摘要: /*消息提示begin*/jQuery.Info = function (msg) { $.messager.alert("温馨提示", msg, "info");};jQuery.Error = function (msg) { $.messager.alert("错误", msg, "error 阅读全文
posted @ 2017-08-21 17:29 恋之呓 阅读(234) 评论(0) 推荐(0) 编辑
摘要: parseFloat(value).toFixed(2); 阅读全文
posted @ 2017-08-21 17:28 恋之呓 阅读(122) 评论(0) 推荐(0) 编辑
摘要: function RetainedDecimalPlaces(num, del, spit) {//num :值 del:小数位 spit:是否使用千分位符 if (del != 0) { num = parseFloat(num).toFixed(del); //保留小数并四舍五入 } var s 阅读全文
posted @ 2017-08-21 17:23 恋之呓 阅读(423) 评论(0) 推荐(0) 编辑