摘要:
/*消息提示begin*/jQuery.Info = function (msg) { $.messager.alert("温馨提示", msg, "info");};jQuery.Error = function (msg) { $.messager.alert("错误", msg, "error 阅读全文
摘要:
parseFloat(value).toFixed(2); 阅读全文
摘要:
function RetainedDecimalPlaces(num, del, spit) {//num :值 del:小数位 spit:是否使用千分位符 if (del != 0) { num = parseFloat(num).toFixed(del); //保留小数并四舍五入 } var s 阅读全文