如果我的元素具有给定的属性和值,我想在 jquery 中做一些事情。
这是我正在尝试但不起作用的方法:
if ($('.myElement').css('opacity','1')){
console.log('test');
}
什么是正确的语法?
如果我的元素具有给定的属性和值,我想在 jquery 中做一些事情。
这是我正在尝试但不起作用的方法:
if ($('.myElement').css('opacity','1')){
console.log('test');
}
什么是正确的语法?
设置样式的第二个参数css()
,不传递该参数返回当前样式供您检查字符串:
if ($('.myElement').css('opacity') == '1'){
console.log('test');
}
要获得我们使用的 css 样式$(element).css(propertyname);
设置我们使用的样式$(element).css(propertyname,value);
if ($('.myElement').css('opacity') == 1){
console.log('test');
}