Jquery使用样式attr查找元素并更改它

时间:2016-03-25 14:26:57

标签: jquery attr

我有:

<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'))...

但没有运气

1 个答案:

答案 0 :(得分:2)

你可以使用外卡:

$("div[style*=green][style*=100px]")...

请确保您不会意外地获取其他元素。