gpt4 book ai didi

jQuery 如果 DIV 没有类 "x"

转载 作者:IT王子 更新时间:2023-10-29 03:23:53 25 4
gpt4 key购买 nike

在 jQuery 中,我需要做一个 if 语句来查看 $this 是否不包含类“.selected”。

$(".thumbs").hover(function(){

$(this).stop().fadeTo("normal", 1.0);
},function(){
$(this).stop().fadeTo("slow", 0.3);

});

基本上当这个函数运行时(悬停)如果类“.selected”已经附加到div,我不想执行淡入淡出,这意味着图像将处于完全不透明状态以表示它被选中。在 Google 上搜索时没有成功,尽管这是一个关于如何使用 IF 语句的简单问题...

最佳答案

使用 "not "选择器。

例如,代替:

$(".thumbs").hover()

尝试:

$(".thumbs:not(.selected)").hover()

关于jQuery 如果 DIV 没有类 "x",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/520250/

25 4 0
文章推荐: mongodb - Golang mgo 获取空对象
文章推荐: jquery - XMLHttpRequest Origin null 不允许文件 :///to file:///(Serverless) 的 Access-Control-Allow-Origin
文章推荐: jquery - 在 jQuery 中取消选择