我有:
<div style="color:red">
some text
</div>
<div style="color:green; height:100px;">
some more text
</div>
我想选择带有style color:green;height:100px;
的div,然后将其更改为color:blue; height:10px;
我试过了:
$("div").each(function(){
if($(this).css("height")=="100px"){
$(this).css("color","blue");
}
});
和
$("div").find(attr('style','color:green'))...
但没有运气
答案 0 :(得分:2)
你可以使用外卡:
$("div[style*=green][style*=100px]")...
请确保您不会意外地获取其他元素。