javascript function
//截取两位小数,不四舍五入 function getXS2(aa){ aa = aa+""; aa = aa.substring(0, aa.indexOf(".") + 3); return aa; }