gpt4 book ai didi

javascript - onchange 函数由于某种原因未运行

转载 作者:行者123 更新时间:2023-12-02 21:45:09 24 4
gpt4 key购买 nike

我有一个只读文本框 (sum),每当其值发生变化时,我想要第二个只读文本框 (totalcost) 来更新其值。

这是我所拥有的,但由于某种原因它不起作用。所有引用文献都是正确的,我是否遗漏了一些基本内容?

jQuery(function($) {
$('input[name="totalCPC"]').on('change', function() {
var pc = parseFloat($('input[name="percentdiscount"]:checked').val());
var cpc = parseFloat($('input[id="sum"]').val());
var noc = parseFloat($('input[id="numberofclickstextbox"]').val());
$('#totalcost').val(function() {
return ((noc * cpc) *pc).toFixed(2);
});
});
});

最佳答案

您需要trigger change event

$('#totalcost').val(function() {
return ((noc * cpc) *pc).toFixed(2);
}).trigger('change');

关于javascript - onchange 函数由于某种原因未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60270605/

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