如何确定元素在其父节点中的索引?
下面是示例代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个使用纯 JS(无 jQuery)的工作示例: http://jsfiddle.net/jfriend00/xgk4y/。单击任意 div 可查看从
countPrevSiblings()
返回的索引。以及其中的代码:
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:
您可以使用 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());