如何使用 HTML 中的制表顺序(键盘制表键)来指定元素的使用方式?
使用 HTML 中的tabindex 属性来设置元素的制表顺序。它让你拥有在键盘上更改 TAB 使用顺序的权限。
你可以尝试运行以下代码来在 HTML 中创建元素的制表顺序 −
示例
<!DOCTYPE html> <html> <body> <a href = "https://tutorialspoint.com/current_affairs/index.htm" tabindex="1">Current Affairs</a> <br> <a href = "https://tutorialspoint.com/codingground.htm" tabindex="2">Coding Ground</a> <br> <a href = "https://tutorialspoint.com/verbal_ability/index.htm" tabindex="4">Verbal Ability</a> <br> <a href = "https://tutorialspoint.com/quantitative_aptitude/index.htm" tabindex="3">Quantitative Aptitude</a> <br> <p>We have changed the tab order above. Use TAB on keyboard to view the changes.</p> </body> </html>
广告