input表单type属性值
Posted jsxyz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input表单type属性值相关的知识,希望对你有一定的参考价值。
<!-- input表单type属性值: -->
<!-- type = "email" 限制用户输入必须为Email类型 -->
email<input type="email">
<!-- type="url" 限制用户输入必须为URL类型 -->
url<input type="url">
<!-- type="date" 限制用户输入必须为日期类型 -->
date<input type="date">
<!-- type="datetime" 显示完整日期 含时区 -->
datetime<input type="datetime">
<!-- type="datetime-local" 显示完整日期 不含时区 -->
datetime-local<input type="datetime-local">
<!-- type="time" 限制用户输入必须为时间类型 -->
time<input type="time">
<!-- type="month" 限制用户输入必须为月类型 -->
month<input type="month">
<!-- type="week" 限制用户输入必须为周类型 -->
week<input type="week">
<!-- type="number" 限制用户输入必须为数字类型 -->
number<input type="number">
<!-- type="range" 生成一个滑动条 -->
range<input type="range">
<!-- type="search" 具有搜索意义的表单results="n"属性 -->
search<input type="search">
<!-- type="color" 生成一个颜色选择表单 -->
color<input type="color">
以上是关于input表单type属性值的主要内容,如果未能解决你的问题,请参考以下文章
HTMLHTML 表单 ① ( input 表单控件 | input 标签语法 | input 标签属性 | type 属性 | value 属性 | name 属性 | checked 属性 )
练习-为网页添加icon图标;为网页添加关键字/作者;超链接;input的type属性有哪些常用属性值-form表单