<div id="customerServices">
<div id="pnlCustomerServices_Container">
<!-- and many others divs...... -->
<div id="s1_Container">
<div id="ext-gen32">
<!-- and many others divs........ -->
<input type="checkbox" id="s1"
name="s1" class=" x-form-checkbox and_many_classes..... parent" value="s1">
<label for="s1" class="x-form-cb-label font-bold"
id="ext-gen33">Label1Text</label>
<!-- and many others divs........ --->
</div>
</div>
<div id="s2_Container">
<div id="ext-gen33">
<!-- and many others divs........ -->
<input type="checkbox" id="s2"
name="s2" class=" x-form-checkbox and_many_classes..... parent" value="s2">
<label for="s2" class="x-form-cb-label font-bold"
id="ext-gen34">Label1Text</label>
<!-- and many others divs........ --->
</div>
</div>
</div>
</div>
我想找到所有input checkBox
(在這種情況下input checkBox id="s1"
和input checkBox id="s2"
)有屬性類包含「父」 和嵌套div id="customerServices"
。查找深層嵌套的輸入的jQuery
但是難以知道customerServices
和input class = "parent"
之間有多少個div以及有多少個值具有輸入的屬性類。
更新: 前段時間我使用下面的代碼。但它不適合當前的任務。
$('#customerServices input:checkbox[class="parent"]');
UPDATE2: 還有一件事。我怎樣才能找到它沒有屬性class=parent
$('#customerServices input:checkbox[class^="parent"]')
'$(「input:checkbox.parent」)''有什麼問題嗎? – Jon