选择不在另一个元素内的每个元素

发布于 2024-10-03 20:15:41 字数 378 浏览 2 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各自安好 2024-10-10 20:15:41

您可以获取结果集,然后使用 .not() 对其进行过滤,像这样:

$("img[title]").not(".buttons img")

或者使用 :not() (但这可能在较旧的浏览器中会慢一些),如下所示:

$("img[title]:not(.buttons img)")

You can get the result set then filter it using .not(), like this:

$("img[title]").not(".buttons img")

Or filter in the same selector using :not() (but this is probably a bit slower in older browsers), like this:

$("img[title]:not(.buttons img)")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文