gpt4 book ai didi

Jquery - 如果项目包含一个字符串或另一个字符串,则应用规则

转载 作者:行者123 更新时间:2023-12-01 08:17:55 24 4
gpt4 key购买 nike

希望我能比谷歌搜索更好地解释这一点!

我有一个 Jquery 规则,它检测某个单词,然后将一个类应用于该元素父容器,它按希望工作。我不想简单地为其他单词复制此规则,而是将它们作为“OR”有效地包含在规则中。

这就是我所拥有的有效方法:-

$(".container:contains(Word1)").each(function(){
$(this).closest("#containerParent").addClass("newClass");
});

这是无效的尝试:-

$(".container:contains(Word1)"|".container:contains(Word2)").each(function(){
$(this).closest("#containerParent").addClass("newClass");
});

作为替代方案,我当然可以将其设为一个函数,但我想“正确”或以更简洁的方式进行它。

你觉得怎么样?

最佳答案

试试这个方法:

$(".container:contains(Word1), .container:contains(Word2)").each(function(){
$(this).closest("#containerParent").addClass("newClass");
});

关于Jquery - 如果项目包含一个字符串或另一个字符串,则应用规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9293550/

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