toLocaleString() toFixed() toPrecision() 此方法使用环境的区域设置将数字对象转换为表示数字的人类可读字符串。 语法 number.toLocaleString() 返回值 使用环境的语言环境返回表示数字的可读字符串。 例 var num = new Number(177.1234); console.log( num.toLocaleString()); 输出 177.1234 toFixed() toPrecision()