首页 > 代码库 > html学习笔记四
html学习笔记四
表单标签<form> :必须记住
表单在html中很常用,因为它可以和计算机交互
input部分
<font-color = "red" font-size = 10>注册表单</font><hr/> <!--表单中的内容要想提交到服务端,因为服务端无法解析,so就必须加标识 name value--> <form> <!--用type来定义输入的属性--> 输入帐号:<input type="text" name = "user" value=http://www.mamicode.com/""/>
>
<!--向服务端提交数据,表单中的内容必须有name和value属性用于给服务端获取数据-->
input 上述方法,都必须记住
select和textarea部分
<!--选择部分--> <select name="country"><!----> <option>--选中城市--</option> <option value=http://www.mamicode.com/"TieLing">铁岭>
表单格式化
<form> <table border="2" bordercolor="#00fff" cellpadding="10" cellspacing="0" width="600tx"> <tr> <th colspan="2">注册表单:</th> </tr> <tr> <td>用户名称:</td> <td><input type="text" name="user" /></td> </tr> <tr> <td>输入密码:</td> <td><input type="password" name="pwd" /></td> </tr> <tr> <td>选择性别:</td> <td> <input type="radio" name="sex" value=http://www.mamicode.com/"nan">男>
html学习笔记四
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。