0
私はそれを変更:jQueryのスタイルattrの持つ要素を見つけると
$("div").each(function(){
if($(this).css("height")=="100px"){
$(this).css("color","blue");
}
});
:
<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").find(attr('style','color:green'))...
しかし運
あなたが試したことは、私のために働いていると言いました。https://jsfiddle.net/j08691/c3kL3pd6/ – j08691