1、使用fieldset和legend标签
在form中,我们经常会对form中的信息进行分组,比如注册form,我们可能会将注册信息分组成基本信息(一般为必填),具体信息(一般为可选),那我们如何更好的来实现呢?我们可考虑在form中加入下面两个标签:
Example Source Code []
fieldset:对表单进行分组,一个表单可以有多个fieldset
legend:说明每组的内容描述
Example Source Code []
<form id=\"demoform\" class=\"democss\" action=\"\">
<fieldset>
<legend>Basic Register</legend>
<p>First name: <input type=\"text\" name=\"fname\" value=\"\" /></p>
...
</fieldset>
<fieldset>
<legend>Detailed Register</legend>
<p>Interest: <input type=\"text\" name=\"interest\" value=\"\" /></p>
...
</fieldset>
...
</form>
fieldset默认是带边框的,而legend默认一般显示在左上角。但在某些场合或许不愿意让fieldset和legend的默认样式或默认布局影响设计方案中的美观。
解决方法:在CSS中将fieldset的border设置为0,legend的display设置为none即可。
2、使用label标签
我们对form中的文本标签给定一个label标签,并使用for属性使其与表单组件相关联,效果为单击文本标签,光标显示在相对应的表单组件内。
Example Source Code []
<form id=\"demoform\" class=\"democss\" action=\"\">
<fieldset>
<legend>Basic Register</legend>
<p>
<label for=\"fname\">First name:</label>
<input type=\"text\" id=\"fname\" name=\"fname\" value=\"\" />
</p>
...
</fieldset>
<fieldset>
<legend>Detailed Register</legend>
<p>
<label for=\"interest\">Interest:</label>
<input type=\"text\" id=\"interest\" name=\"interest\" value=\"\" />
</p>
...
</fieldset>
...
</form>
除了以上方法,我们还可以用label套嵌整个表单组件和文本标签,如:
Example Source Code []
<label for=\"fname\">
First name:
<input type=\"text\" id=\"fname\" name=\"fname\" value=\"\" />
</label>
根据规范,文本会自动与邻接的表单组件关联,但遗憾的是——现在主流的浏览器IE6并不支持这个特性。
3、使用accesskey和tabindex属性
网站要兼顾更多情况下的使用,比如没有光标设备(如鼠标)的情况下,要让使用键盘操作也可以完成form的填写,这时候点击对于它们来说,已经没有任何意义。我们这个时候选用label的accesskey(快捷键,IE下为alt accesskey属性值,FF下为alt shift accesskey属性值)和tabindex属性(Tab键,tabindex属性值为顺序)添加到表单标签上,如label,input等。
Example Source Code []
<label for=\"fname\" accesskey=\"f\" tabindex=\"1\" >First name:</label>
<input type=\"text\" id=\"fname\" name=\"fname\" value=\"\" />
4、使用optgroup标签
optgroup标签的作用是在选择列表中定义了一组选项。我们可以选用optgroup标签给select元素的options分类,并使用label属性,属性值会在下拉列表(select)里显示为一个不可选的、缩进标题。注重:optgroup 不支持嵌套。
Example Source Code []
<select name=\"China\">
<optgroup label=\"Jiangsu\">
<option value=\"nj\">Nanjing</option>
<option value=\"sz\">Suzhou</option>
</optgroup>
<optgroup label=\"Zhejiang\">
<option value=\"hz\">Hangzhou</option>
<option value=\"wz\">Wenzhou</option>
</optgroup>
</select>
IE6.0 中存在一个小Bug(FireFox 中不存在):使用键盘方向键进行选择时,在 IE 中,当选中项由一个optgroup的选项换成另一optgroup 的选项时,不会触发onchange。解决办法是:增加 onkeydown 或 onkeyup 事件协助解决。
5、使用button标签
Example Source Code []
Definition and Usage
Defines a push button. Inside a button element you can put content, like text or images. This is the difference between this element and buttons created with the input element.
定义与用法
定义为一个提交按钮。在button元素内你可以放置内容,像文本(text)或者图片(images)。这是这个元素和input元素按钮的区别。
Example Source Code []