目录
<input>标签用于搜集用户信息。
在html中,<input>标签可以没有结束标签,但在xhtml中<input>必须被正确地关闭。
<input>标签属性
<input>标签属性共约有29个,比较常用的是下面这几个:
type | 规定input元素的类型,详见下文 |
name | 定义input元素的名称,获取值的时候要用它 |
value | 规定input元素的值 |
type属性
text
用于输入单行文本。
<input type="text" />
(斜杠可带可不带,后同)
password
用于输入密码,并将输入内容隐藏为星号或圆点。
<input type="password">
number
用于输入数值,可以使用min和max属性限制输入的范围。
<input type="number" max="10">
<input type="number" min="10">
用于输入电子邮件地址,浏览器会自动检查输入的格式是否正确。
<input type="email">
checkbox
用于选择多个选项中的一个或多个。
<input type="checkbox" name = "hobby">写代码
<input type="checkbox" name = "hobby">看博客
<input type="checkbox" name = "hobby">看电视
radio
用于选择多个选项中的一个。
<input type="radio" value = "x" checked>男
<input type="radio" value = "x">女
标签:标签,HTML,用于,input,type,输入,属性
From: https://blog.csdn.net/a_pjx_z/article/details/137153431