QQ浏览器不兼容toLocaleString解决方法
toLocaleString方法是用于返回格式化对象后的字符串,该字符串格式因语言不同返回值也会不同,在QQ浏览器中不支持这个方法,caniuse已经标灰处理,简单的方法是重写。
function localeString(x, sep, grp) {
var sx = (''+x).split('.'), s = '', i, j;
sep || (sep = ' '); // default seperator
grp || grp === ...
最新评论