关于js为什么显示月份不对的文章
-
javascript日期加减,date怎么修改日期
在指定日期上增加年份/** * 在指定的日期上增加指定的年数 * @param {number} increase 增长值,整数 * @returns 增加后的日期 */Date.prototype.AddYears = function (increase) { let year = this.getFullYear(); let oldDate = this.Format('yyyy-MM-dd HH:mm:ss') let newDate = oldDate.replac