运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The tabIndex Property</h2> <a href="https://w3schools.org.cn/" tabindex="2">W3Schools</a><br> <a href="http://www.google.com/" tabindex="1">Google</a><br> <a href="http://www.microsoft.com/" tabindex="3">Microsoft</a> <p>The tab order of the first link is:</p> <p id="demo"></p> <script> let order = document.getElementsByTagName("A")[0].tabIndex; document.getElementById("demo").innerHTML = order; </script> </body> </html>