gpt4 book ai didi

javascript - 如何使用javascript自动计算金额

转载 作者:行者123 更新时间:2023-11-28 20:50:58 25 4
gpt4 key购买 nike

这是我的功能

function  doMath() { 
var counter; var nvalue; var amount;
var price=100;
nValue = document.getElementById("message").value;
amount=(nvalue*price);
document.getElementById("total").value=amount ;
}

我的html

<input type="" name="message" id="message" onkeyup="doMath()"maxlength="60">message
<input type="text" name="total" id="total" maxlength="60"> amount

当用户在消息字段中输入值时,它应该自动计算金额并将其显示在金额字段中。

但是当我输入值时它显示 NAN

它不会计算,任何人都可以帮我解决这个问题。我是 javascript 新手

最佳答案

您将变量声明为 nvalue,但使用了 nValue

   function  doMath() { 
var nValue; var amount;
var price=100;
nValue = document.getElementById("message").value;
amount=(nValue*price);
document.getElementById("total").value=amount ;
}

关于javascript - 如何使用javascript自动计算金额,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12446797/

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