我有一個invoice.jsp
頁面,我必須使用jQuery在文本框中計算一些值。無法使用jQuery獲取textfield值
在我的發票中有一個數量文本框。如果用戶輸入數量,則計算出的價格應該動態計算,即(total_subPrice= unit_price * quantity)
,並在另一個稱爲「價格」的文本框中顯示。
現在我的電流輸出是這樣的:
我嘗試下面的代碼來解決這個問題,但我的jQuery代碼是無法獲得unitprice
文本字段的數據。我不知道爲什麼。請檢查我的代碼,併爲我提供一個解決方案。
invoice.jsp
--------------------
--------------------
<script type="text/javascript">
$(document).ready(function(){
$(function() {
$('input[name^="quantity"]').change(function() {
var unitprice = $(this).siblings('input[name^="unitprice"]').val();
alert("Unit price check="+unitprice);
//problem in this line. Unable to get the unit price
$(this).siblings('input[name^="price"]').val($(this).val() * unitprice);
});
});
});
</script>
..............................
..............................
<!--
Here I am iterating through a list from my dabase using strus2 framework tags.
And defined my input field values in struts2 tag eg. `<s:textfield.../>`
is the same as `<input type="text".../>
-->
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<s:iterator value="#session.BOK" status="userStatus">
<tr style="height: 10px;">
<td width="65%" align="left"><s:property value="bookTitile"/></td>
<td width="10%" align="left">
<s:textfield name="unitprice" value="%{price}" size="4"/>
</td>
<td width="10%" align="center">
<s:textfield name="quantity" value="%{quantity}" size="2" />
</td>
<td width="15%" align="center">
<s:textfield value="%{price}" name="" size="6"></s:textfield>
</td>
</tr>
</s:iterator>
</table>
................................
................................
當我在我的文本框的數量,我的警告框顯示「單價檢查=未定義」改變任何價值。請檢查我的代碼並提出任何解決方案。
更新:生成的HTML
inside loop {
<tr style="height: 10px;">
<td width="65%" align="left">book title display</td>
<td width="10%" align="left">
<input type="text" name="unitprice" value="%{price}" size="4"/>
</td>
<td width="10%" align="center">
<input type="text" name="quantity" value="%{quantity}" size="2" />
</td>
<td width="15%" align="center">
<input type="text" value="%{price}" name="" size="6"></s:textfield>
</td>
</tr>
什麼是生成html? – Ibu
@Ibu我更新檢查我的上述代碼再次在**更新:生成HTML ** –