form常用表单标签
Posted tendo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form常用表单标签相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <form action="http://www.baidu.com" method="get"> 姓名:<input type="text" name="uu"/> 密码:<input type="password" name="123"/> 照片:<input type="file" /><br><br> 感兴趣的职位:<br><input type="radio" name="sheji">web设计<input type="radio" name="kaifa">web开发<input type="radio" name="java">java开发 <br><br> 性别:<br><input type="radio" name="sex">男<input type="radio" name="sex">女 <br><br> 向往城市: <select> <option value="请选择">请选择</option> <option value="c">c</option> <option value="a">a</option> <option value="b">b</option> </select> <br><br> 协议:<br><textarea cols="13" rows="3">求职信息必须准确,真实。本网站只负责向企业推荐。</textarea><br> <input type="checkbox" checked="checked">我认真阅读并接受以上协议。 <br><br> <input type="submit" value="提交" disabled="disabled"> <input type="reset" value="重置"> <input type="submit" value="提交"> </form> </body> </html>
效果图:
以上是关于form常用表单标签的主要内容,如果未能解决你的问题,请参考以下文章