admin管理员组文章数量:1341749
How to check if two DOM elements are siblings?
Example DOM structure:
<div>
<a></a>
<b></b>
<p></p>
</div>
<i></i>
Test if <b>
is a sibling of <a>
but not of <i>
How to check if two DOM elements are siblings?
Example DOM structure:
<div>
<a></a>
<b></b>
<p></p>
</div>
<i></i>
Test if <b>
is a sibling of <a>
but not of <i>
1 Answer
Reset to default 15jQuery:
var a = $('a'),
b = $('b'),
i = $('i');
a.siblings().is(b); // true (since "b" is sibling of "a")
a.siblings().is(i); // false (since "i" is sibling of "div" and not of "a")
a.siblings().is(a); // false (can't be singling of itself)
Vanilla:
const elm_p = document.querySelector('p');
const elm_a = document.querySelector('a');
const elm_i = document.querySelector('i');
const areSiblings = (elm1, elm2) =>
elm1 != elm2 && elm1.parentNode == elm2.parentNode;
// tests
[
[elm_p, elm_a], // true
[elm_a, elm_p], // true
[elm_a, elm_a], // false
[elm_a, elm_i] // false
].forEach(([a,b]) => console.log(areSiblings(a,b)))
<div>
<a></a>
<b></b>
<p></p>
</div>
<i></i>
本文标签: javascriptCheck if elements (DOM Nodes) are siblingsStack Overflow
版权声明:本文标题:javascript - Check if elements (DOM Nodes) are siblings - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743625339a2512196.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论