标签:
文本 标签 设置 <b>粗体 <em>大号 <strong>加重 <big>大号 <samll>小号 <i> 斜体 <sub>下标 <sup>上标 <ins>插入字 <del>删除字
文本链接: a:link 普通的未被访问的 a:visited 用户已访问的链接 a:hover 鼠标经过 a:active 链接被点击时
通用属性 : class 类名 id元素唯一ID style样式 title额外信息
列表:<ol> 有序列表 <ul> 无序列表
<li> 列表项
自定义列表:<dl> 列表 <dt> 列表项 <dd>描述
列表元素属性值 list-style list-style-image(none url) list-style-position(inside outside)
list-style-type(none disc circle square decimal lower-roman upper-roman lower-alpha upper-alpha)
表单
<form name ="name" method="传送到服务器的方法post/get" action="url" enctype="编码方式" target="返回信息的显示方式">
栗子:
<form action="http://localhost/MyService/Service.php" method="post">
用户名:<input type="text" name="name">
密 码:<input type="password" name="password">
<br/>
<input type="submit" value="提交">
</form>
<form>标签内的标记:
<input> 表单输入标记
<select>菜单/列表标记
<option>菜单/列表项目标记
<textarea> 多行文本域标记
type属性值: text 文本域 password 密码域 file 文件域 checkbox 复选框 radio 单选按钮
button 普通按钮 submit 提交按钮 reset 重置按钮 hidden 隐藏域 image 图像域(图像提交按钮)
文本域和密码域的属性 :maxlength 最大输入字符数 size 字符宽度 value (默认值 defaultValue)
栗子:<textarea name="comment" rows="5" cols="40"> </textarea>
<select>、<option>的属性:size 显示的选项项目 multiple 列表中的项目多选 value 选项值 selected 默认选项
标签:
原文地址:http://www.cnblogs.com/joycefan311/p/5654086.html