gpt4 book ai didi

javascript - 用JS四舍五入到小数点后两位

转载 作者:行者123 更新时间:2023-11-28 11:24:56 24 4
gpt4 key购买 nike

好吧,这是一个由 html 页面调用的 JS 文件。总体而言,t_price 会更改为许多不同的美元价格。然后 T_price 转换为新加坡元。这样做可以将 499 这样的数字变成 510.38294。我需要将任何数字四舍五入到小数点后两位。这是我的代码:

r_price=t_price*1.27;
m_price=Math.round(r_price*100/100);
document.getElementById("v_price").value="$"+m_price;

无论出于什么原因 - 这四舍五入到没有小数位而不是 2。因此 510.38294 变成了 510 而不是 510.38。

我使用了错误的 math.round 吗?任何帮助都会很棒。

最佳答案

你写道:

m_price=Math.round(r_price*100/100);

你的意思是:

m_price=Math.round(r_price*100)/100;

关于javascript - 用JS四舍五入到小数点后两位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17280091/

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