<form> 用户名 <input type="text"> 密码 <input type="password"> <br> 一个<input type="checkbox"> 两个<input type="checkbox"> 三个<input type="checkbox"> 一个<input type="radio" name="1"> 两个<input type="radio" name="1"> 三个<input type="radio" name="1"> <br> <select> <option>111</option> <option>222</option> <option>333</option> </select> <input type="button" value="提交"> <input type="submit" value="提交"> </form> <textarea cols="20" rows="10">初始化文字</textarea>
主要类型有
text
password
radio 单选(只有name值相同)
checkbox
select--option
button
submit---点击后会自动刷新网页
textarea 输入的文字区域
其他的一些属性
required 值为空的时候提示