html表单
1、input type 常用的有text(文本)、password(密码)、radio(单选框)、checkbox(复选框)、rest(重置)、submit(提交)、date(日期)、number(数字)。
2、具有相同的name属性时,才能单选.checked为默认选中
3、下拉菜单 <select>
<option></option>
</select>
selected为默认选中,multiple多选。
原文:http://www.cnblogs.com/xiangjianyu/p/5297377.html