Js 获取两位小数,通用方法
时间:2010-12-27 来源:NetSQL
// str代表传入的浮点数,没有作判断和检验,这里注意下
// n代表小数位数
function GetNumberByN(str, n) {
if (str != "" && str != null) {
return str.toFixed(2);
}
else {
return "";
}
}
相关阅读 更多 +