使用 jQuery 查找包含元素的 ID
<li id="someID">
<div id="div1">Text</div>
<div id="div2">Text x 2</div>
<div id="div3">Text x 3</div>
<span>
<div>
<ul>
<li class="menuItem">Menu Item</li>
</ul>
</div>
</span>
</li>
简而言之,当单击“menuItem”类时,我试图找到 ID“someID”。下面的代码似乎并没有削减它。
$('.menuItem').click(function(){alert($(this).closest('li').attr('id'));});
<li id="someID">
<div id="div1">Text</div>
<div id="div2">Text x 2</div>
<div id="div3">Text x 3</div>
<span>
<div>
<ul>
<li class="menuItem">Menu Item</li>
</ul>
</div>
</span>
</li>
In short, I'm trying to find the ID "someID" when the class "menuItem" is clicked. The code below doesn't seem to be cutting it.
$('.menuItem').click(function(){alert($(this).closest('li').attr('id'));});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
而不是
.closest('li').
使用.parents('li').
(注意复数)甚至提到在
closest()
文档 ..instead of
.closest('li').
use the.parents('li').
(note the plural)It is even mentioned at the
closest()
documentation ..另一种方法是在您尝试识别的 li 上放置一个类,并使 .closest() 选择器更加精确。
例如
Another approach is to put a class on the li you are trying to identify, and make the .closest() selector more precise.
e.g.
如果您想要父级,则可以使用 此处记录的 .parent
If you want the parent then you could use .parent which is documented here
你可以使用.parent
you can use .parent