2020-03-11JS小数转为%并保留两位小数

var str = Number(point*100).toFixed(2)
str = str + '%'
point: 转化前的小数
str:的到的保留了两位小数的百分数

你可能感兴趣的:(2020-03-11JS小数转为%并保留两位小数)