欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

程序员文章站 2022-03-20 20:32:33
...
<input> 无限制输入

type 限制输入 type = 如下类型

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

type 后还可以跟一些属性: 如<input type=text maxlength = 10> 限制文本的长度为10字节

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

list 可以用的时候再来查, list就是当一个建议值不够的时候添加到几个.

<form>

<input type="text" name="usr" list="listfruit">

<datalist id="listfruit">

<option>雪梨</option>

<option>香蕉</option>

<option>蜜瓜</option>

</datalist>

</form>

要记好几个东西 , 创建一个datalist,里面有多个option, datalist的id 指向input的list, 一对多通常是多的那边其id

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

password 显示非明文

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

placeholder 占位符,默认为空, 也可以输入提示语提示输入什么, 但真正输入的时候回消失.

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

number 限制输入数字

range 限制输入定义域数字

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

color date IE都不支持, 其实很好的, 就是让用户输入多元化, 能选颜色,日期.

checkbox 多选题,打钩

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

提交返回一个?music = 1 & sport =2 和后续的程序接轨从而调用这些id 的文本或者音乐

radio 单选题

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

image 按钮为图片的按钮……

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

email tel url 这些是要求用户输入正确的类别,但浏览器支持不是很好. 可能要用正则表达式规范

hidden 隐藏输入框, 要配合name 和value 编写, 提交后返回 name = value

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

file 上传控件

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

总结Html5表单(二) input type 各种输入, 各种用户选择,上传

以上就是总结Html5表单(二) input type 各种输入, 各种用户选择,上传的详细内容,更多请关注其它相关文章!