我如何才能僅爲clone()
的目的選擇特定班級的父母的特定班級的第一個孩子?jquery選擇帶有父類的第一個孩子與類
<div class="sector_order">
<div class="line_item_wrapper">
SELECT THIS DIV
</div>
<div class="line_item_wrapper">
NOT THIS DIV
</div>
</div>
我想是這樣的:
var form1 = $(this)
.parents('.sector_order')
.children('.line_item_wrapper')
.children().clone(true)
,並得到與類line_item_wrapper
兩個內div但我得到一個空的對象,當我嘗試用這種添加:
children('.line_item_wrapper :first')
謝謝!
這是非常有幫助的。非常感謝您花時間解釋這一點。 – 1252748
你非常歡迎;我很高興得到了幫助! =) –