<input type="text" name="username">
<input type="password" name="password">
复选框,允许用户从给定数目的选择中选一个或多个选项,同一组选项按钮,name值一定要一致
value属性中的值用来设置用户选中该项目后提交到数据库中的值;name为控件的名称
<input type="checkbox" name="hobby" value="reading"> 阅读
<input type="checkbox" name="hobby" value="music"> 音乐
<input type="checkbox" name="hobby" value="sports"> 运动
单选按钮,允许用户从给定数目的选择中选一个选项,同一组选项按钮,name值一定要一致
<input type="radio" name="gender" value="male"> 男
<input type="radio" name="gender" value="female"> 女
<input type="submit" value="提交">
<input type="reset" value="重置">
普通按钮,定义可点击的按钮,但没有任何行为,常用于用户点击时调用JavaScript方法
<input type="button" value="喜欢请点个赞吧" name="btn" onClick="" />
外观上与type="text"的input输入类型没有差异,在手机端会唤出英文键盘
<input type="email" name="email">
<input type="number" name="age">
<input type="date" name="birthday">
<input type="color" name="color">
<input type="range" name="volume" min="0" max="100">
<input type="file" name="file">
<input type="search" name="search">
<input type="tel" name="phone">
<input type="url" name="website">
<input type="datetime" name="datetime">
<input type="month" name="month">
<input type="week" name="week">
<input type="time" name="time">
<input type="datetime-local" name="datetime-local">
隐藏域,定义隐藏输入类型用于在表单中增加对用户不可见,但需要提交的额外数据时,disabled属性无法与type="hidden"的input元素一起使用
<input type="hidden" name="hidden" value="hidden value">