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.
数字56675.456
56675.456
我想用 Format 格式化这个数字:{0:$###.##}
{0:$###.##}
String.localeFormat()在 JQuery 中使用
String.localeFormat()
预期结果:$56675.46
$56675.46
function convert(num) { return "$" + (num.toFixed(2)); } convert(56675.456)
演示