gpt4 book ai didi

jquery - 运行函数 IF :has :not class

转载 作者:行者123 更新时间:2023-12-01 03:05:20 25 4
gpt4 key购买 nike

我只希望在 .toolbar li 没有类 .Oactive 时运行此函数:

$(".prod_description").mousedown(function(){
$(this).parent().parent().addClass('mousedown');
$(this).parent().parent().parent().addClass('mousedown');
})
.mouseup(function(){
$(this).parent().parent().removeClass('mousedown');
$(this).parent().parent().parent().removeClass('mousedown');
});

我需要用什么来包裹它来确保这一点?

something like: if $(.toolbar li):not(:has .Oactive) {

}

最佳答案

if($("ul.toolbar li:not(.oActive)")){

在使用类时,您应该尽可能指定元素类型(在本例中为 ul) - 它可以加快选择器引擎的速度。

关于jquery - 运行函数 IF :has :not class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2561366/

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