标签:html javascript 表单 面试题
form表单中的input有哪些类型
1、button
<input type="button"/>
2、checkbox
<input type="checkbox"/>
3、file
<input type="file"/>
4、hidden
<input type="hidden"/>
5、image
<input type="image"/>
6、password
<input type="password"/>
7、radio
<input type="radio"/>
8、reset
<input type="reset"/>
9、submit
<input type="submit"/>
10、text
<input type="text"/>
标签:html javascript 表单 面试题
原文地址:http://blog.csdn.net/you23hai45/article/details/44907861