标签:eth get eset code val -- mit 多选 ext
1.块级标签(独占一行)<form action="表单提交数据的地址" method=“GET/POST”></form>
3.1文本输入框
<input type="text" />
3.2密码输入框
<input type="password" />
3.3按钮
<input type="button" value=“按钮” />
3.4提交
<input type="submit" value="提交"/>
3.5单选
<input type="radio" name="radio1" value="radio1" checked="checked"/>
<input type="radio" name="radio1" value="radio2"/>
3.6多选
<input type="checkbox" name="checkbox1" value="checkbox1"/>
<input type="checkbox" name="checkbox1" value="checkbox2"/>
3.7上传
<input type="file" name="filename"/>
需要指定<form enctype="multipart/form-data">
3.8重置
<input type="reset" value="重置" />
标签:eth get eset code val -- mit 多选 ext
原文地址:http://blog.51cto.com/13803166/2146613