选择不在另一个元素内的每个元素
<img src="xxx" alt="xxx" title="xxx">
<div class="buttons">
<a href="xxx"><img src="xxx" alt="xxx" title="xxx"></a>
</div>
我需要编写一个 jQuery 选择器,它将仅选择标题属性位于 .buttons div 之外的图像。我知道要选择带有标题属性的图像,我需要使用这样的东西:
$("img[title]")
我知道 jQuery 中有类似 :not() 选择器的东西,但我找不到将它们组合在一起以实现确切结果的方法。
<img src="xxx" alt="xxx" title="xxx">
<div class="buttons">
<a href="xxx"><img src="xxx" alt="xxx" title="xxx"></a>
</div>
I need to write a jQuery selector, that will select ONLY images with title attributes that are OUTSIDE the .buttons div. I know that to select images with title attributes I need to use something like this:
$("img[title]")
I know that there is something like :not() selector in jQuery, but I can't find the way to combine them together to achieve that exact result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以获取结果集,然后使用
.not()
对其进行过滤,像这样:或者使用
:not()
(但这可能在较旧的浏览器中会慢一些),如下所示:You can get the result set then filter it using
.not()
, like this:Or filter in the same selector using
:not()
(but this is probably a bit slower in older browsers), like this: