请看下面的问题和答案,第二个答案(有很多赞成票) 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”的元素添加了一个类
最简单的方法是什么