如何tabindex
根据元素是否可见(在可视区域中)更改元素的?我想做其中一件事:tabindex
在进入新部分时重置当前并将 new 分配tabindex
给该部分中的元素。或者能够禁用和重新启用tabindex
某些元素。
html:
<div id="nav">
<a id="firstLink" href="#section1" tabindex="1">Go to section 1</a>
<a id="secondLink" href="#section2" tabindex="2">Go to section 2</a>
</div>
<div id="container">
<div id="section1">
<a href="#" tabindex="3">Specific to section 1</a>
</div>
<div id="section2">
<a href="#" tabindex="3">Specific to section 2</a>
</div>
</div>
我希望链接仅在它们的部分可见时才处于跳位顺序中。
CSS:
#container{
overflow: hidden;
width: 400px;
height: 400px;
}
#section1{
background: red;
width: 400px;
height: 400px;
}
#section2{
background: green;
width: 400px;
height: 400px;
}
现场示例:http: //jsfiddle.net/2UF3n/5/