百分比算出来是小数后,希望保留两位小数(直接截断),不要四舍五入。请问有哪儿可以设置嘛~
比如99.246%,希望显示是99.24%~
function(){ return this.percentage.toFixed(2)*100 + '%';}
function(){
var a=Math.floor(this.percentage*10000)/10000*100+'%';
return a;
}