3

でdivがありid='tips'ます。複数の子があります。私がする必要があるのid='tips'は、そのスタイルがtop<10pxのdivの子をフェッチしたいということです。これがコードの抜粋です。

<div id="tips">
   <div style="top: 5px; left: 150px;">
      Required Div
      <span class="arrow"></span>          
    </div>
   <div style="top: 15px; left: 150px;">
      Not-Required Div
      <span class="arrow"></span>          
    </div>
   <div style="top: 45px; left: 150px;">
      Child3
      <span class="arrow"></span>          
    </div>
</div>

top<10pxのdiv子divは1つだけ存在します。

4

1 に答える 1

6

使用filter()

var $child = $("#tips div").filter(function() {
    return parseInt($(this).css("top"), 10) < 10;
});

// you can do as needed with the element(s) here, this is just an example
$child.css("color", "#C00"); 

フィドルの例

于 2012-05-23T11:06:24.340 に答える