转自:js小数和百分数的转换
function toPercent(point){ var str=Number(point*100).toFixed(1); str+="%"; return str; }