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

发布时间:2022-05-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了总结Html5表单(二) input type 各种输入, 各种用户选择,上传脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
<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 显示非明文

@H_8_126@

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 &amp; 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 各种输入, 各种用户选择,上传的详细内容,更多请关注脚本宝典其它相关文章

脚本宝典总结

以上是脚本宝典为你收集整理的总结Html5表单(二) input type 各种输入, 各种用户选择,上传全部内容,希望文章能够帮你解决总结Html5表单(二) input type 各种输入, 各种用户选择,上传所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。