一些輸入字段,我有以下HTML格式:連載只有從父DIV
<div class="product">
...
</div>
...
(n-th row elements)
<div class="product">
<div class="control-group">
<label>Name</label>
<input type="text" value="T-Shirt Greenday" name="name[]">
</div>
<div class="control-group">
<label>Quantity</label>
<input type="text" value="3" name="quantity[]">
</div>
<div class="control-group">
<a href="#" class="remove">Remove</a>
</div>
</div>
...
我怎麼能得到的只有從第n行的輸入字段和jquery的序列呢? (我試過這樣的事情:parent().parent().siblings('.control-group').children(':input').serialize()
,但沒有成功)
謝謝。
你看過http://api.jquery.com/nth-child-selector/,然後將其與http://api.jquery.com/serialize/ – Vinod
結合,你是否在嘗試做這個點擊「刪除」? – CodeGodie