标签:
值:
5.<frameborder>是否需要边框 <frameborder=“1”>显示边框;<frameborder=“0”>不显示边框。
4.其他相关标签
注:元素中的文本通常呈现为斜体。大多数浏览器会在 address 元素前后添加折行
2.常见属性:
3.按钮的使用
注:单选按钮和复选按钮都可以使用"checked"属性来设置默认项。另name属性一致时,则为二选一。
如:
性别:<input type="radio" name="sex">男
性别:<input type="radio" name="sex">女
4.隐藏域:当<input type="hidden">时;
5.多行文本域:
用法:使用<textarea>标记可以实现一个能够输入多行文本区域。
格式:<textarea name="name" rows="value" cols="value" value="value">...<textarea>
注:rows和cols属性分别用来指定显示行的行数和列数,单位是字符个数。
6.菜单下拉列表域<select>
语法格式: <select name="" size="value" multiple="value">
<option value="" selected="selected">选项1</option>
<option value="" selected="selected">选项2</option>
<option value="" selected="selected">选项3</option>
</select>
<html> <head> <title> 网页的框架 </title> <meta charset="utf-8"> </head> <frameset rows="90,*,90" frameborder="1" border="1" noresize="noresize"> <frame name="top" src="top.html"/> <frameset cols="20%,80%"> <frame name="left" src="left.html"/> <frame name="right" src="right.html" scrolling="no"/> </frameset> <frame name="bottom" src="bottom.html"/> </frameset> </html>
<html> <head> <title>表单设计练习</title> <meta charset="utf-8"> </head> <body> <form> 账号:<input type="text" size="16"> <br/><br/> 密码:<input type="password" size="16"> <br/><br/> 爱好:<input type="checkbox" name="tiyu">体育 <input type="checkbox" name="yinyue">音乐 <input type="checkbox" name="yingshi">影视 <input type="checkbox" name="yuedu">阅读 <br/><br/> 性别:<input type="radio" name="sex">男 <input type="radio" name="sex">女 <br/><br/> 自我介绍; <br/><br/> <textarea name="name" rows="10" cols="30" > 这里是自我介绍 </textarea> <br/><br/> 地址: <select name="dizhi"> <!--selected不添加也会有同样的效果--> <option value="shanxi" selected="selected">陕西</option> <option value="sichuan" selected="selected">四川</option> <option value="gansu" selected="selected">甘肃</option> <option value="henan" selected="selected">河南</option> </select> <br/><br/> <input type="submit" value="提交"> <input type="reset" value="重置"> <!--value不赋值,提交按钮和重置按钮会有同样的效果,但是普通按钮不会有文字,就只是个方形按钮,大家可以自己练习一下--> <input type="button" value="按钮"> </form> </body> </html>
标签:
原文地址:http://www.cnblogs.com/xsql/p/5973368.html