摘要: Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "H+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+... 阅读全文
posted @ 2018-07-26 16:11 南国的刘新 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1 function theWeek(now) { 2 var totalDays = 0; 3 years = now.getYear() 4 if (years < 1000) 5 years += 1900 6 var days = new Array(12); 7 days[0] = 31; 8 days[2... 阅读全文
posted @ 2018-07-26 16:10 南国的刘新 阅读(463) 评论(0) 推荐(0) 编辑