我知道这是一个老问题,类似的问题(已解决)更加复杂。但我已经尝试过,但我自己无法弄清楚。
我有
<div style="color:white; padding:10px">Text</div>
我想将其颜色更改为红色:
div[style*="color:white"]{color:red}
$('div').filter(function() {
return $(this).css('color') == 'white';
}).css("color", "red");
我尝试了css和javascript,有或没有空格,使用十六进制或RGB颜色代码。