使用 jQuery,如何选择既不是 A 类也不是 B 类的元素?

发布于 2024-12-10 19:30:23 字数 269 浏览 0 评论 0原文

如果我有一个这样的列表:

<ul>
    <li class="A"></li>
    <li class="A B"></li>
    <li class="A C"></li>
</ul>

使用 jQuery,我如何仅选择第一项,而不选择其他两项?换句话说,如何编写一个选择器来选择不具有 B 类或 C 类的元素?

If I have a list like this:

<ul>
    <li class="A"></li>
    <li class="A B"></li>
    <li class="A C"></li>
</ul>

Using jQuery, how would I select only the first item, but not the other two? In other words, how do I write a selector that will only select an element that does not have class B or C?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

眼泪也成诗 2024-12-17 19:30:23

您可以使用 :not() 选择器或 .not() 方法:

$('.a').not('.b, .c')

$('.a:not(.b,.c)')

You can either use the :not() selector or .not() method:

$('.a').not('.b, .c')

$('.a:not(.b,.c)')
半山落雨半山空 2024-12-17 19:30:23
$(function() {
    $(".a").not('.b, .c').text('aaa');
});

jsfiddle: http://jsfiddle.net/bitsmix/h2fpq/

$(function() {
    $(".a").not('.b, .c').text('aaa');
});

jsfiddle: http://jsfiddle.net/bitsmix/h2fpq/

巷雨优美回忆 2024-12-17 19:30:23

您可以使用 .not() 方法:

$('li.a').not('.b, .c')

You can use the .not() method:

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