gpt4 book ai didi

javascript - 如果 css 有样式,jquery addClass 到元素

转载 作者:太空宇宙 更新时间:2023-11-03 19:43:17 26 4
gpt4 key购买 nike

请看下面的问答,第二个答案(有很多赞) Jquery: How to check if the element has certain css class/style

看起来像这样:

if ($('#yourElement').css('position') == 'absolute') {
// true
}

这太棒了,但我想要类似的东西

if ($('#yourElement').css('position') == 'absolute') {
$(this).addClass('xxx');
}

因此 ID 为“yourElement”的元素添加了一个类

最简单的方法是什么

最佳答案

你可以这样做:

$('#yourElement').addClass(function(index, currentClass) {
return $(this).css('position') == 'absolute' ? 'xxx' : '';
});

有关语法的更多信息,请查看 API for .addClass() .

关于javascript - 如果 css 有样式,jquery addClass 到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15201745/

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