目的のために、特定のクラスを持つ親の特定のクラスの最初の子のみを選択するにはどうすればよいclone()
ですか?
<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)
そして、クラスで両方の内部divをline_item_wrapper
取得しますが、この追加を試してみると、空のオブジェクトが取得されます。
children('.line_item_wrapper :first')
ありがとう!