标签:控件 用户名 uname charset 通用 input 单元 最小 tail
一、表单元素
1.提交按钮:<inputtype="submit"value="提交"/>
2.重置按钮:<inputtype="reset"value="重置"/>
3.普通按钮:<inputtype="button"value="按钮上的文字"/>
显式的联系:
<labelfor="SSN">Social Security Number:</label>
<inputtype="text"name="SocSecNum"id="SSN"/>
隐式的联系:
<label>Date of Birth: <inputtype="text"name="DofB"/></label>
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>复杂表单</title> 6 </head> 7 <body> 8 <h1>修改个人信息</h1> 9 <table border="1px" cellspacing="0" width="400px"> 10 <form> 11 <tr> 12 <td>姓名:</td> 13 <td> 14 <input type="text" name="uName" value="mary"/> 15 </td> 16 </tr> 17 <tr> 18 <td>性别:</td> 19 <td> 20 <input type="radio" id="female" name="gender" value="female" checked /><label for="female">女士</label> 21 <input type="radio" id="male" name="gender" value="male" /><label for="male">男士</label> 22 </td> 23 </tr> 24 <tr> 25 <td>学历:</td> 26 <td> 27 <select name="education"> 28 <option value="高中">高中</option> 29 <option value="本科">本科</option> 30 <option value="硕士">硕士</option> 31 <option value="其他" selected>其他</option> 32 </select> 33 </td> 34 </tr> 35 <tr> 36 <td>意向工作城市:</td> 37 <td> 38 <select name="city" size="5" multiple> 39 <option value="BJ">北京</option> 40 <option value="SH">上海</option> 41 <option value="GZ">广州</option> 42 <option value="SZ">深圳</option> 43 </select> 44 </td> 45 </tr> 46 <tr> 47 <td>个人描述:</td> 48 <td> 49 <textarea rows="4"></textarea> 50 </td> 51 </tr> 52 <tr> 53 <td></td> 54 <td> 55 <input type="checkbox" />不要公共我的个人信息 56 </td> 57 </tr> 58 <tr> 59 <td></td> 60 <td> 61 <input type="submit" value="保存" /> 62 <input type="reset" value="重填" /> 63 </td> 64 </tr> 65 </form> 66 </table> 67 </body> 68 </html>
<iframesrc="04.html">该浏览器不支持iframe</iframe>
<details>
<summary>标题</summary>
<div>收缩/展开的内容</div>
</details>
<metermin="0"max="100"value="50"title="50%"></meter>
<timedatetime="时间值">显示的文本</time>
<fieldset>
<legend>必填信息(组标题)</legend>
用户名:<inputtype="text"/><br/>
密码:<inputtype="password"/><br/>
</fieldset>
<mark>高亮显示的文本</mark>
[HTML]表单控件、iframe、datails、meter、time、fieldset、mark
标签:控件 用户名 uname charset 通用 input 单元 最小 tail
原文地址:http://www.cnblogs.com/enginex/p/6806667.html