9

如何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/

4

1 回答 1

4

您可以从任何隐藏字段中动态添加或删除disabled="disabled"以使其tabindex值被忽略。

$("a:hidden").attr("disabled","disabled");
于 2012-09-20T19:34:01.967 回答