HTML教程
tabindex
属性示例
1
3
2
连续按 "Tab",可以改变焦点的位置.遍历的顺序是1-2-3.
<html> <head> </head> <body> <p><a href="http://www.dreamdu.com/xhtml/">HTML教程</a> <a href="http://www.dreamdu.com/xhtml/attribute_tabindex/"><strong>tabindex</strong></a> 属性示例</p> <p><a href="http://www.dreamdu.com/xhtml/default/" tabindex="1">1</a> <a href="http://www.dreamdu.com/about/helpme/" tabindex="3">3</a> <a href="http://www.dreamdu.com/xhtml/tag_a/" tabindex="2">2</a></p> <p>连续按 "Tab",可以改变焦点的位置.遍历的顺序是1-2-3.</p> </body> </html>