摘要: js 字符串转日期格式://日期格式化function DateFormat(d) { var da = new Date(d.replace(/-/g, "/ "));//这句话网上搜到的,很多人都写错了。后面的/ 后面有个空格才是正确的方法 return da.format("yyyy-MM-dd");//执行下面日期格式化的方法}js日期格式化:Date.prototype.format = function(format) //author: meizz { var o = { "M+": this.getMonth() + 阅读全文
posted @ 2012-09-11 15:29 高山-景行 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 正则表达式网站:http://www.regexlib.com/?AspxAutoDetectCookieSupport=1 日期验证:年月日格式,不包含时分秒 ^((((19|20)(([02468][048])|([13579][26]))-0?2-29))|((20[0-9][0-9])|(1 阅读全文
posted @ 2012-09-11 08:49 高山-景行 阅读(360) 评论(0) 推荐(0) 编辑