function changeTabIndex()
document.getElementById('1').tabIndex="3";
document.getElementById('2').tabIndex="2";
document.getElementById('3').tabIndex="1";
<p><a id="1" href="//www.w3xue.com">1</a></p>
<p><a id="2" href="//www.w3xue.com">2</a></p>
<p><a id="3" href="//www.w3xue.com">3</a></p>
<input type="button" onclick="changeTabIndex()"
<p>请在按下 “更改 TabIndex” 按钮前后事宜 tab 键在链接间导航。</p>