gpt4 book ai didi

jquery - 当其中一个是 $(this) 时,如何将 css 设置为更多选择器?

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:10 24 4
gpt4 key购买 nike

我想使用 jquery 为 2 个选择器设置背景颜色:

$('#selector1, #selector2').css('background-color', '#dcf0ff');

这是可行的,但是当其中一个选择器是 $(this) 时,该怎么做呢?

function() {
$(this, '#element2').css('background-color', '#dcf0ff');
}

这对所有选择器都不起作用,并且控制台中不会显示任何错误。

最佳答案

您可以通过 jQuery 的 .add() 将元素添加到选择器方法:

$(this).add('#element2').css('background-color', '#dcf0ff')

关于jquery - 当其中一个是 $(this) 时,如何将 css 设置为更多选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33554546/

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