我想得到4th div的子输入元素的值。 基本上我正在检查chekbox值,并希望使用“this”关键字添加相关的输入框值 这是我的HTML代码
<div class="container">
<div class="cell-checkbox" style="float:left;margin-right:5%;">
<input type="checkbox" name="select" value="7" class="big">
</div>
<div class="cell-desc" style="float:left;margin-right:5%;width:30%;">
<!-- Content -->
</div>
<div class="cell-cart"> //input box is inside this div
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr>
<td align="right">
<table align="center" class="cellBuy">
<tbody>
<tr align="right">
<td width="1%">
<input type="hidden" name="buyid" id="buyid" value="7">
<input type="hidden" name="category" value="464">
<input type="hidden" name="itemid" value="">
<input name="qty" id="qty" size="6" maxlength="6" value="1" class="input"> /*want to get this input text value
</td>
<td height="20">
<div align="left">
<input type="button" class="btn-BuyOff" value="Buy" id="addtocart" name="addtocart">
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
我已经尝试了下面提到的代码,但它不能正常工作
var result = [];
$(':checkbox:checked').each(function (i) {
result.push($(this).val() + "," + $(this).parent().next().find('#qty').val());// this is for finding quantity field value
});
var strreuslt = result.join(';');
alert(strreuslt);
答案 0 :(得分:2)
$(':checkbox').eq(3)
这为jquery提供了第4个元素。索引从零开始,因此.eq(3)将给第4个孩子。
答案 1 :(得分:2)
尝试使用“最近”来获取包含两个输入的最近父级,然后触发查找
$(':checkbox:checked').each(function (i) {
result.push($(this).val() + "," + $(this).closest('.container').find('input[name="qty"]').val());
});
或:
$(':checkbox:checked').each(function (i) {
result.push($(this).val() + "," + $(this).parent().siblings('.cell-cart').find('input[name="qty"]').val());
});
注意:如果您有多组输入,则需要将每个组包装在dom元素中,最好是ul li
答案 2 :(得分:1)
dom遍历存在问题。 $(this).parent()
不返回包含输入复选框元素的div。您应该使用类容器遍历最近的div,然后在其中找到输入复选框。像这样:
var result = [];
$(':checkbox:checked').each(function (i) {
result.push($(this).val() + "," + $(this).closest('.container').find('[name="qty"]').val());// this is for finding quantity field value
});
var strreuslt = result.join(';');
alert(strreuslt);
答案 3 :(得分:1)
请改为使用name
,不要对多个元素使用相同的id
:
$(this).parent().siblings('.cell-cart').find('[name=qty]').val();
如果容器包含多个<div class="cell-cart">
:
$(this).parent().next().next().find('[name=qty]').val();