javascript中的toFixed——固定小数位数时间:2022-09-27 14:51:28代码: <script> var a=4.2343; alert(a.toFixed(3)); </script> 执行结果: toFixed方法将一个数字转换成一个拥有固定小数位数的字符串。