我想要的是當型號改變時,價格的價值會改變。爲了得到價格,我需要ID號碼和數量。jQuery獲取輸入:nth-child(n)的值不起作用
所以我得到這個HTML代碼:
<div class="col-sm-9 topnav">
<span>
<input name="prodid[]" type="text" id="form-field-icon-1" class="input-small" placeholder="Product ID" />
</span>
<span>
<input name="model[]" type="text" id="form-field-icon-2" class="input-small" onchange="getprice($(this));"placeholder="Model" />
</span>
<span>
<input name="qty[]" type="text" id="form-field-icon-3" class="input-small" placeholder="Quantity" />
</span>
<input name="price[]" type="text" id="form-field-icon-2" class="input-small" placeholder="Price" readonly="readonly" />
<span>
<button class="btn btn-minier btn-yellow">Add</button>
</span>
</div>
JS代碼:
function getprice(thisObj) {
var prodid = thisObj.closest('div').children().children("input:first").val();
var modelid = thisObj.val();
var qty = thisObj.closest('div').children().children("input:nth-child(2)").val();
}
數量的值,我得到的是不確定的,但是當我改變了第n個孩子到1,我得到我輸入的價值。在我的console.log中,有一個值。 背景:輸入#form-field-icon-2.input-small
非常感謝您的幫助!
我會嘗試,後來非常感謝! :) – bless1204 2014-11-03 05:40:22