摘要: /** * 多少天以后的时间 * @param date 时间 * @param num 多少天 * @param type 类型 年 月 天(默认天) */ exports.afterDate = function(date, num, type) { if (!date) return ""; switch(typeof date) { case ... 阅读全文
posted @ 2016-05-17 16:29 觉信 阅读(452) 评论(0) 推荐(0) 编辑
摘要: //格式化货币 exports.formatMoney = function(s){ if(s == "undefined" || s == null ) return "0.00"; s = (s+"").replace(",",""); if(/[^0-9\.]/.test(s)) return "格式错误"; s=s.replace(/^(\d*)$/,"$... 阅读全文
posted @ 2016-05-17 16:25 觉信 阅读(150) 评论(0) 推荐(0) 编辑
摘要: //限制输入内容必须为数字 不能为0 开头 $("#ipt").on("input",function(){ var obj = $(this); var money = obj.val(); if(/^0+/.test(money)){ money = money.replace(/^0+/, ''); $(obj).va... 阅读全文
posted @ 2016-05-17 16:21 觉信 阅读(336) 评论(0) 推荐(0) 编辑