摘要: /* 函数:日期 加n天 参数:n是天数 返回:n天后的日期 */ Date.prototype.addDays = Date.prototype.addDays || function (n) { this.setDate(this.getDate() + n); return this; } / 阅读全文
posted @ 2016-02-17 11:39 心存善念 阅读(1449) 评论(0) 推荐(0)