最近项目里面用的input标签比较多,所以在此列出input标签里面的输入类型。
![](https://img.haomeiwen.com/i2364940/d048fb47fab04cfc.png)
文本类型:text
最基本的输入类型,这里不作阐述
按钮类型:button
<input type="button" name="advancedLevel" value="我是按钮" />
![](https://img.haomeiwen.com/i2364940/88da9f789742f675.png)
复选框类型:checkbox
<input type="checkbox" name="vehicle" value="Bike" />我有一辆自行车<br />
<input type="checkbox" checked name="vehicle" value="Car" />我有一辆汽车<br />
![](https://img.haomeiwen.com/i2364940/b42fdf05bddf0b91.png)
单选框类型:radio
<input type="radio" name="sex" value="male" />男性<br />
<input type="radio" name="sex" checked value="female" />女性<br />
![](https://img.haomeiwen.com/i2364940/1ac5ad87632c12b5.png)
颜色类型:color
<input type="color" name="advancedLevel" value="advancedLevelValue" />
![](https://img.haomeiwen.com/i2364940/84c0f6e61a784708.png)
日期和时间选择器类型:date
<input type="date" name="advancedLevel" value="advancedLevelValue" />
![](https://img.haomeiwen.com/i2364940/a30e7adf0c19ca87.png)
文件类型:file
<input type="file" name="img" />
![](https://img.haomeiwen.com/i2364940/d7b2fe7e68d713a9.png)
![](https://img.haomeiwen.com/i2364940/e67c239e43bfb4ad.png)
hidden类型:hidden
。隐藏hidden所在的input
![](https://img.haomeiwen.com/i2364940/c4eb3fe3fb598981.png)
![](https://img.haomeiwen.com/i2364940/20da65d9f0d2afe5.png)
密码类型:password
。密码字段中的字符会被遮蔽(显示为星号或实心圆)
Password: <input type="password" name="pwd" value="" maxlength="8" /><br />
![](https://img.haomeiwen.com/i2364940/09e4bd4b212e1dcc.png)
重置类型:reset
。会把所有表单字段重置为初始值
![](https://img.haomeiwen.com/i2364940/409231d7490992e8.png)
<form action="xxxx" method="get">
Email: <input type="text" name="email" /><br />
Pin: <input type="text" name="pin" maxlength="4" /><br />
<input type="reset" value="重置" />
</form>
提交类型:submit
。会把form里面的input的内容传递到action所指向的页面
<form action="xxx" method="get">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" value="提交" />
</form>
![](https://img.haomeiwen.com/i2364940/ad0640a298b12998.png)
数字类型:number
。
数字: <input type="number" name="points" min="1" max="10" />
![](https://img.haomeiwen.com/i2364940/94c5b5272315563a.png)
![](https://img.haomeiwen.com/i2364940/b4973c73b407c79c.png)
网友评论