2013-12-13 290 views
0

我要選擇具有查詢的元素,而省略一個,但不是所有的孩子:如何選擇一個元素沒有選擇子元素

<div class="parent-that-I-want-jquery-to-find"> 
    <div class="child-I-want-omitted"> 
    <p></p> 
    </div> 
    <div class="child-I-dont-want-omitted"> 
    <p></p> 
    </div> 
<div> 
+0

你想要得到的jQuery的匹配組包含剛父母,只是你想要的孩子,兩者還是別的? – ajp15243

+3

你可以擴展你想要完成的任務嗎? –

+1

呃?如果你選擇一個元素,那麼你只選擇元素,而不是它的子元素。你*可能*正在尋找':not'選擇器:http://api.jquery.com/not-selector/。 –

回答

4
$('.parent-that-I-want-jquery-to-find').children().not('.child-I-want-omitted');