本文介绍了在asp.net中使用jquery乘以两个文本框值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将两个文本框值相乘使用查询结果显示在一个标签中任何人都可以告诉我查询中的错误
How to multiply two text box values Using the query the result to Display in one label Can u any one please tell me the Error following in my query
$(function () {
$("[id*=txtQuantity]").keyup(function () {
debugger;
var price = parseFloat($("[id*=txtPrice]").val());
var Qnt = parseFloat($("[id*=txtQuantity]").val());
var total = parseFloat(price * qnt);
$("[id*=lblPrice]").val(total);
});
});
<tr bgcolor="#ececec" style="width: 50%">
<td class="style10" align="left">
<span style="font-family: 'Arial Narrow'; font-size: medium;" class="lblleabl">
Price</span>
</td>
<td class="style10" align="left">
<%-- <asp:TextBox ID="txtPrice" runat="server" class="Price"></asp:TextBox>--%>
<asp:TextBox ID="txtPrice" runat="server"></asp:TextBox>
</td>
</tr>
<tr bgcolor="#ececec" style="width: 50%">
<td class="style10" align="left">
<span style="font-family: 'Arial Narrow'; font-size: medium;" class="lblleabl">
Quantity</span>
</td>
<td class="style10" align="left">
<asp:TextBox ID="txtQuantity" runat="server"></asp:TextBox>
</td>
</tr>
<tr bgcolor="#ececec" style="width: 50%">
<td class="style10" align="left">
<span style="font-family: 'Arial Narrow'; font-size: medium;" class="lblleabl">
Total Price </span>
</td>
<td class="style10" align="left">
<%--<asp:Label ID="lblPrice" runat="server" Text=""></asp:Label>--%>
<asp:TextBox ID="lblPrice" runat="server"></asp:TextBox>
</td>
</tr>
推荐答案
这篇关于在asp.net中使用jquery乘以两个文本框值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!