toExponential() Number.parseInt() toFixed() 此方法以指数表示法返回表示数字对象的字符串。 语法 number.toExponential( [fractionDigits] ) 参数细节 fractionDigits - 一个整数,指定小数点后的位数。默认为指定数字所需的位数 返回值 一个字符串,以指数表示法表示Number对象,小数点前有一位数,四舍五入到小数点后的fractionDigits数字。如果省略fractionDigits参数,则小数点后的位数默认为唯一表示该值所需的位数。 例 //toExponential() var num1 = 1225.30 var val = num1.toExponential(); console.log(val) 输出 1.2253e+ Number.parseInt() toFixed()