toLocaleString
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了toLocaleString相关的知识,希望对你有一定的参考价值。
记得以前有人问我如何格式化货币,我用数组加字符串操作然后实现了,今年不小心看微博,发现了更加简单的方法!!!
var num = 123456; var options = { style:‘currency‘, currency:‘CNY‘ }; num.toLocaleString(‘zh-CN‘,options);
然后console出来了¥123,456.00;
世间和平!
toLocaleString : dateObj.toLocaleString([locales[, options]])
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString
以上是关于toLocaleString的主要内容,如果未能解决你的问题,请参考以下文章
java Date中方法toLocaleString过时的替代方案
javascript中toString跟toLocaleString的区别
使用 .toLocaleString() 轻松实现多国语言价格数字格式化
并非所有浏览器都支持 toLocaleString()? [复制]