tabindex属性
tabindex 属性规定元素的 tab 键控制次序(当 tab 键用于导航时)。
以下元素支持 tabindex
属性:<a>, <area>, <button>, <input>, <object>, <select> ,textarea>。
<element tabindex="number">
值 | 描述 |
number | 规定元素的 tab 键控制次序(1 是第一个)。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<a href="http://www.fishc.com/" tabindex="2">鱼C工作室</a><br />
<a href="http://www.google.com/" tabindex="1">Google</a><br />
<a href="http://www.baidu.com/" tabindex="3">Baidu</a>
<p><b>注释:</b>请尝试使用键盘上的 "Tab" 键在链接之间进行导航。</p>
</body>
</html>
注释:请尝试使用键盘上的 "Tab" 键在链接之间进行导航。