标签:div 技术 tps color 格式化 image 例子 bsp 原来
<script language="javascript"> document.write("<h1>JS保留两位小数例子</h1><br>"); var a=0.156; document.write("原来的值:"+a+"<br>"); document.write("两位小数点:"+a.toFixed(2)+"<br>四位小数点"+a.toFixed(4)+"<br>"); document.write("加百分号,两位小数点:"+a.toFixed(2)+"%<br>四位小数点"+a.toFixed(4)+"%"); </script>
标签:div 技术 tps color 格式化 image 例子 bsp 原来
原文地址:http://www.cnblogs.com/CryOnMyShoulder/p/7911548.html