运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The tabIndex Property</h2> <p>Navigate the links below by using the "Tab" button on you keyboard.</p> <p><a id="myAnchor1" href="https://w3schools.org.cn">Link 1</a></p> <p><a id="myAnchor2" href="https://w3schools.org.cn">Link 2</a></p> <p><a id="myAnchor3" href="https://w3schools.org.cn">Link 3</a></p> <script> document.getElementById("myAnchor1").tabIndex = "3"; document.getElementById("myAnchor2").tabIndex = "2"; document.getElementById("myAnchor3").tabIndex = "1"; document.getElementById("myAnchor3").focus(); </script> </body> </html>