摘要: //添加天 Date.prototype.addDays = function (d) { this.setDate(this.getDate() + d); }; //添加周 Date.prototype.addWeeks = function (w) { this.addDays(w * 7); }; //添加月 Date.prototype.addMonths = fu... 阅读全文
posted @ 2017-11-06 15:03 直钩钓鱼 阅读(1419) 评论(0) 推荐(0) 编辑