HTML 表单

<body>
1.<img src="n0.jpg" title="这是一头牛" usemap="niu" alt="niu" />
  <map name="niu">
  <area shape="rect" coords="196,248,432,426" href="http://www.baidu.com" />
  </map><br />
2.<iframe src="../1024/Untitled-1.html" width="400" height="300" frameborder="1"></iframe>

3.

账号:<input type="text" value="zhangsan" required="required" placeholder="请输入帐号" /><br />
密码:<input type="password" required="required"><br />
说说(文本域) <textarea cols="20" rows="4">今天天气不错</textarea><br />
隐藏 域:<input type="hidden" value="1949"/><br />
提交按钮:<input type="submit" value="按钮尚需要显示的文字(提交)" /> 将当前的信息上传 上传完成之后 刷新 submi只有在form表单里面才有用<br />
重置按钮:<input type="reset"/> 针对整个form表单将所有信息恢复为默认值<br />
普通按钮:<input type="button" value="登录"/><br />
图片按钮:<input type="image" src="_`AVGE45{@C(3%~MBID4B8T.png" width="65"/><br />
单选按钮:<input type="radio"/>男 (只能选一次)<br />
单选按钮组:<input type="radio" name="sex" />男 <br />
单选按钮组:<input type="radio" name="sex"checked="checked"/>女 <br />

复选框组(可重复选择)::<input type="checkbox" name="sex"checked="checked"/>女0<br /><br />
复选框组(可重复选择)::<input type="checkbox" name="sex"/>女1 <br /><br />
复选框组(可重复选择)::<input type="checkbox" name="sex"/>女2 <br /><br />
文件上传::<input type="file"/> <br />
下拉列表:<select size="1"/>
下拉列表:<option>可乐</option>
下拉列表:<option selected="selected">雪碧</option><br />
下拉列表:<option>牛奶</option><br />

 

posted @ 2016-10-27 11:16  get("新技能")  阅读(317)  评论(0编辑  收藏  举报