您的位置: 首页 > IT文章 > js保留两位小数的解决方法 js保留两位小数的解决方法 分类: IT文章 • 2022-09-02 09:42:22 js保留两位小数的解决办法var a = 123.456; a = a..toFixed(2); alert(a);//结果:123.46