gpt4 book ai didi

javascript - 除了 (':not( selector )' 之外,jQuery 的替代方案是什么?

转载 作者:行者123 更新时间:2023-12-01 02:13:52 25 4
gpt4 key购买 nike

not(':not(选择器)')的jQuery替代是什么?

基本上可以这么说:

var buttons = $('a.buttons');

我正在寻找一个 href 为“#measurement”的特定按钮,并且需要向其添加一个类。我知道如何做到这一点的唯一方法是使用 not(':not( 选择器 )')。

buttons.not(':not([href="#measurement"])').addClass('selected');

一定有更好的方法。

.is() // returns boolean
.has() // looks for items inside each element

外面有什么东西吗?

最佳答案

我相信你想要过滤器:

$elements.filter(selector)

如果你已经有了

var $buttons = $('a.buttons');

您可以通过以下方式找到合适的

var $theButtonIWant = $buttons.filter('[href*="#measurement"]');

关于javascript - 除了 (':not( selector )' 之外,jQuery 的替代方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9540152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com