From: http://kevinpeng.javaeye.com/blog/772591
虽然js中Number对象自带了toFixed方法
但由于用户使用不同浏览器,并且这些浏览器js库也存在些差异,所以表现也不同,大多数时候是在FF下开发,却忽略了IE等浏览器的兼容问题。
借用网上实现代码:
另外一种实现方法:
但还是存在问题
比较好的实现方法:
优化版:
555.555.toFixed(2) //输出555.56
- 2.3567.toFixed(2)
2.3567.toFixed(2)
但由于用户使用不同浏览器,并且这些浏览器js库也存在些差异,所以表现也不同,大多数时候是在FF下开发,却忽略了IE等浏览器的兼容问题。
- 原生toFixed方法555.555.toFixed(2) //输出555.55,IE和FF下执行结果不同
原生toFixed方法555.555.toFixed(2) //输出555.55,IE和FF下执行结果不同
借用网上实现代码:
- function ForDight(Dight,How){
- //必须是数字或浮点数。如3.56 、 789
- //1:先将小数向右移动How位。
- //2:将移动后结果四舍五入。
- //3:先将小数向左移动How位。
- Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How);
- return Dight;
- }
- console.info(ForDight(12345.67890,2));
function ForDight(Dight,How){ //必须是数字或浮点数。如3.56 、 789 //1:先将小数向右移动How位。 //2:将移动后结果四舍五入。 //3:先将小数向左移动How位。 Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight;}console.info(ForDight(12345.67890,2));
另外一种实现方法:
- Number.prototype.toFixed = function(pos){
- var p = pos || 2; //必须是数字或浮点数,默认精确2位
- return Math.round(Number(this)*Math.pow(10,p))/Math.pow(10,p);
- }
- console.info((12345.67890).toFixed());
Number.prototype.toFixed = function(pos){ var p = pos || 2; //必须是数字或浮点数,默认精确2位 return Math.round(Number(this)*Math.pow(10,p))/Math.pow(10,p);}console.info((12345.67890).toFixed());
但还是存在问题
- 555.555.toFixed(2)
555.555.toFixed(2)输出结果555.55。
比较好的实现方法:
- Number.prototype.toFixed=function(len){
- var add = 0,s,temp;
- var s1 = this + "";
- var start = s1.indexOf(".");
- //必须是数字或浮点数,判断移动后的前一位是否大于5,大于5加1。
- if(s1.substr(start+len+1,1)>=5) add=1;
- var temp = Math.pow(10,len);
- s = Math.floor(this * temp) + add; // Math.ceil(this * temp)
- return s/temp;
- }
- 555.555.toFixed(2) //输出555.56
Number.prototype.toFixed=function(len){ var add = 0,s,temp; var s1 = this + ""; var start = s1.indexOf("."); //必须是数字或浮点数,判断移动后的前一位是否大于5,大于5加1。 if(s1.substr(start+len+1,1)>=5) add=1; var temp = Math.pow(10,len); s = Math.floor(this * temp) + add; // Math.ceil(this * temp) return s/temp;}555.555.toFixed(2) //输出555.56
优化版:
- Number.prototype.toFixed=function(len){
- var temp = Math.pow(10,len);
- var s = Math.ceil(this * temp)
- return s/temp;
- }
Number.prototype.toFixed=function(len){ var temp = Math.pow(10,len); var s = Math.ceil(this * temp) return s/temp;}
555.555.toFixed(2) //输出555.56