input
input标签类型:button是一个没有任何功能的按钮,需要用javascript加上动作才可以使用。功能简单,比起<button></button>是一个功能强大的按钮,更美观。
<input type="button" />
input标签类型:checkbox是多选框
用label绑定input。
<label for="check">
<input type="checkbox" >
</label>
input标签类型:file能指定电脑中的文件。
<input type="file">
file有2个属性分别是:
multiple【多个文件可以被同时选中. 只要用户所在的平台允许 (摁住 shift 或者 ctrl), 用户可以选择多个文件】写法如下:
<input type="file" id="file" name="file" multiple />
accept【可以指定上传文件的格式。例如指定是.jpg格式就只有jpg图片可见】
<form action="">
<label for="file">
<input type="file" id="file" name="file" accept=".jpg,.jpeg,.png" />
</label>
</form>
input标签类型:hidden【允许 web 开发者存放一些用户不可见、不可改的数据,在用户提交表单时,这些数据会一并发送出。比如,正被请求或编辑的内容的 id,或是一个唯一的安全令牌。这些隐藏的 <input>
元素在渲染完成的页面中完全不可见,而且没有方法可以使它重新变为可见。】
<input type="hidden" name="ez" id="ez" value="qwer13214" />
上一篇: 反爬利器--设置代理服务器
推荐阅读
-
检测input每次的输入是否合法遇到汉字输入就有问题
-
javascript中input中readonly和disabled区别介绍
-
jQuery实现动态添加、删除按钮及input输入框的方法
-
js获取input输入的值(获取input输入框的内容)
-
js如何获取input里面的值(vue双向绑定原理)
-
Vue-input框checkbox强制刷新问题
-
HTML 5 input placeholder 属性如何完美兼任ie
-
HTML5 input placeholder 颜色修改示例
-
完美解决input[type=number]无法显示非数字字符的问题
-
jQuery实现动态添加和删除input框实例代码