| <!DOCTYPE html><html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>tabindex示例</title>
 </head>
 <body>
 <a href="http://www.baidu.com" tabindex="-1">百度</a>
 <a href="http://www.sougou.com" tabindex="3">搜狗</a>
 <a href="http://www.google.com" tabindex="1">谷歌</a>
 <a href="http://www.360.com" tabindex="4">360</a>
 <a href="http://www.bing.com" tabindex="2">必应</a>
 </body>
 </html>
 
 |