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.
在 jquery 中将 datetime 转换为 double 的最佳方法是什么?我用过 Date.parse。但是,在少数情况下是不正确的。另外,我无法为该方法传递日期时间格式。
- 维吉
在 JavaScript 中,您可以简单地做到variablename.toFixed(2);这一点。
variablename.toFixed(2);
例子:
var num1 = 12312.12312 console.log(num1.toFixed(2)); // Will give 12312.12