gpt4 book ai didi

jquery - 使用 jquery 的文本框 onchange 事件导致 JScript 运行时错误 : 'Deductions' is undefined

转载 作者:行者123 更新时间:2023-11-30 23:51:26 24 4
gpt4 key购买 nike

我有一个关于为文本框 onchange 事件调用 jQuery 的查询。

在我的编码中,我将 onchange 事件称为

<asp:TextBox ID="txtTotalDeductions"  Text="0" runat="server" 
ClientIDMode="Static" onChange="Deductions();" ></asp:TextBox>

我有两个 div 部分

<div id="Total">1000</div>

<div id="NetTotal">0</div>

我需要通过减去总计 - txtTotalDeductions 来计算“NetTotal”。

我的扣除 jQuery 是

//计算扣除额。

function Deductions() {


var result = new Object();

result.total = $("#Total").html();
result.totalDeductions = $("#txtTotalDeductions").val();

result.netTotal = result.total - result.totalDeductions;
$('#NetTotal').html(result.netTotal);
}

当我运行应用程序时,错误显示为“Microsoft JScript 运行时错误:‘扣除’未定义”,错误就在这里“”

任何人都可以帮我吗......提前致谢

最佳答案

删除 OnChange 处理程序

function Deductions() {


var result = new Object();

result.total = $("#Total").html();
result.totalDeductions = $("#txtTotalDeductions").val();

result.netTotal = result.total - result.totalDeductions;
$('#NetTotal').html(result.netTotal);
}

还将代码包装在就绪处理程序中并附加更改事件处理程序

$(document).ready(function(){
//attach with the id od deductions
$("#txtTotalDeductions").bind("change",Deductions);

});

关于jquery - 使用 jquery 的文本框 onchange 事件导致 JScript 运行时错误 : 'Deductions' is undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9563204/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com