gpt4 book ai didi

jquery - 将多个 jquery addclass 包装到一个函数中

转载 作者:行者123 更新时间:2023-12-01 06:47:00 24 4
gpt4 key购买 nike

如何将以下内容包装到一个函数中(jQuery 新手)

<script type="text/javascript">
$('.job:has(.active)').addClass('active');
$('.employers:has(.active)').addClass('active');
$('.about:has(.active)').addClass('active');
</script>

执行上述操作后,仅使用最后一个。

jquery.com 似乎已关闭。

最佳答案

通过使用逗号分隔选择器。如下所示:

$('.job:has(.active),.employers:has(.active),.about:has(.active)').addClass('active');

关于jquery - 将多个 jquery addclass 包装到一个函数中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23653553/

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