jquery向下取整
var currentMoney =Math.round((_memberCurrentPoints/_pointVsMoney)*Math.pow(10,2))/Math.pow(10,2) * 2; $("#currentMoney").text(parseInt(currentMoney)); if(_memberCurrentPoints/_pointVsMoney <1){ $("#currentMoney").text("0"); }else{ $("#currentMoney").text(parseInt(currentMoney)); }
无为而治