closest()
将通过测试元素本身并向上遍历其在 DOM 树中的祖先来获取与选择器匹配的第一个元素。但我想知道是否有任何方法可以得到排除自身的结果(我的意思是只得到它的父母)。
让我举个例子。请审查它。
<div id='div1' class="container">
<div id="div2" class="container">
<!--many nested div.container as it directly or indirectly children -->
</div>
<div id="div3" class="container">
<!--many nested div.container as it directly or indirectly children -->
</div>
</div>
$(function() {
$('div.container').on('mouseover', function(e){
//I only want to select the first parent with the class container.
//closest include the this element.
console.log($(this).closest('.container').attr('id'));
});
});