如何确定元素在其父节点中的索引?

发布于 2024-12-17 02:19:44 字数 642 浏览 0 评论 0原文

下面是示例代码:

<div>
    <div>
    </div>
    <div>
    </div>
    <div>
    </div>
     ....

</div>

我只需要找到父 div 中内部 div 的索引,并将其作为 this 传递给函数。

ps我检查了另一个相同的问题: 是否可以在不循环的情况下获取元素在其父节点中的数字索引?

但是建议的方法对我不起作用。 是否可以在不循环的情况下获取元素在其父节点中的数字索引?

Here is the example code:

<div>
    <div>
    </div>
    <div>
    </div>
    <div>
    </div>
     ....

</div>

I just need to find the index of the the inner div in the parent div, passed to function as this.

p.s. I checked the other question which is same:
Is it possible to get element's numerical index in its parent node without looping?

however that method suggested did not work for me..
Is it possible to get element's numerical index in its parent node without looping?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忘你却要生生世世 2024-12-24 02:19:44

这是一个使用纯 JS(无 jQuery)的工作示例: http://jsfiddle.net/jfriend00/xgk4y/。单击任意 div 可查看从 countPrevSiblings() 返回的索引。

以及其中的代码:

function countPrevSiblings(elem) {
    var i = 0;
    while((elem = elem.previousSibling) != null) {
        // count element nodes only
        if (elem.nodeType == 1) {
            ++i;
        }
    }
    return i;
}

Here's a working example using plain JS (no jQuery): http://jsfiddle.net/jfriend00/xgk4y/. Click on any of the divs to see the index returned from countPrevSiblings().

And the code from that:

function countPrevSiblings(elem) {
    var i = 0;
    while((elem = elem.previousSibling) != null) {
        // count element nodes only
        if (elem.nodeType == 1) {
            ++i;
        }
    }
    return i;
}
少女的英雄梦 2024-12-24 02:19:44

您可以使用 index() jquery 函数获取索引,如果这不适合您,请解释一下问题有点多。

示例:$(this).index($(this).siblings());

You can get index by using index() jquery function, if this is not working for you, explain you question bit more.

Sample : $(this).index($(this).siblings());

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文