Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在尝试找出执行以下操作的最佳方法
假设我以 22.55 的价格出售一件商品,其 GST 为 10%,这 = 2.25 但是当我运行以下命令时,它似乎
变量总和 = (.10 * 22.55);
它返回 2.250000002 美元我如何制作它,所以它只显示真正的美元?2.25 美元
谢谢
您可以使用该.toFixed()方法。
.toFixed()
例子
var val = 24.36257; val.toFixed(2)
将返回 24.36
试试toFixed方法:http ://www.w3schools.com/jsref/jsref_tofixed.asp
toFixed