js小数的四舍五入。。
YOYO
posted @ 2009年12月03日 21:25
in 【Web开发】客户端
, 2339 阅读
调用toFixed(n)函数即可。。。n表示保留n位小数,eg:
-
function countTotalPrice(num) {
-
var x = num * ${requestScope.good.retailPrice};
-
document.getElementById("totalPrice").value = x.toFixed(2);
-
}
- 无匹配