HTML tabindex 屬性
實例
帶有指定的 tab 鍵導航順序的鏈接:
<a href="//o2fo.com/" tabindex="2">W3CSchool</a><br />
<a href="http://www.google.com/" tabindex="1">Google</a><br />
<a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
<a href="http://www.google.com/" tabindex="1">Google</a><br />
<a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
嘗試一下 ?
瀏覽器支持
所有主流瀏覽器都支持 tabindex 屬性
定義和用法
tabindex 屬性規(guī)定當使用 "tab" 鍵進行導航時元素的順序。
HTML 4.01 與 HTML5之間的差異
在 HTML5 中, tabindex 屬性可用于任何的 HTML 元素 (它會驗證任何HTML元素。但不一定是有用)。
在 HTML 4.01中, tabindex 屬性可用于: <a>, <area>, <button>, <input>, <object>, <select>, 和 <textarea>。
語法
<element tabindex="number">
屬性值
值 | 描述 |
---|---|
number | 規(guī)定元素的 tab 鍵控制順序(1 是第一)。 |
HTML 全局屬性
更多建議: