HTML tabindex 属性
tabindex 属性规定元素的 tab 键控制次序(当 tab 键用于导航时)。
1. 语法
<element tabindex="number">
属性值
值 | 描述 |
---|---|
number | 规定元素的 tab 键控制次序(1 是第一个)。 |
2. 范例
带有指定 tab 键顺序的链接:
<a href="http://www.codebaoku.com/" tabindex="2">Codebaoku</a> <a href="http://www.google.com/" tabindex="1">Google</a> <a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
3. 浏览器支持
几乎所有浏览器均 tabindex 属性,除了 Safari。
4. 提示和注释
注释:以下元素支持 tabindex 属性:<a>, <area>, <button>, <input>, <object>, <select> 以及 <textarea>。
title 属性规定关于元素的额外信息。这些信息通常会在鼠标移到元素上时显示一段工具提示文本(tooltip text)。title 属性常与 form 以及 a 元素一同使用,以提供关于输入格式和链接目标的信息。同时它也是 abbr 和 acronym 元素的必需属性。