博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js addDays ,addYears
阅读量:5231 次
发布时间:2019-06-14

本文共 552 字,大约阅读时间需要 1 分钟。

//添加天Date.prototype.addDays = function (d) {    this.setDate(this.getDate() + d);};//添加周Date.prototype.addWeeks = function (w) {    this.addDays(w * 7);};//添加月Date.prototype.addMonths = function (m) {    var d = this.getDate();    this.setMonth(this.getMonth() + m);    if (this.getDate() < d)        this.setDate(0);};//添加年Date.prototype.addYears = function (y) {    var m = this.getMonth();    this.setFullYear(this.getFullYear() + y);    if (m < this.getMonth()) {        this.setDate(0);    }};

 

转载于:https://www.cnblogs.com/xuguanghui/p/7793226.html

你可能感兴趣的文章
使用CSP防止XSS攻击
查看>>
unity3d--NGUI制作中文字体
查看>>
Bean属性的常用配置
查看>>
Spring容器中Bean的生命周期
查看>>
Springboot使用步骤
查看>>
Spring其他注解
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Spring-自动配置
查看>>
Springboot-日志框架
查看>>
SpringBoot-静态资源映射
查看>>
SpringBoot-webjars
查看>>
SpringBoot-thymeleaf
查看>>
IDEA 调试 JAVA ConcurrentLinkedQueue
查看>>
P1908-逆序对
查看>>
P1192-台阶问题
查看>>
ACM模板——康托展开
查看>>
P1025-数的划分
查看>>
P1305-新二叉树
查看>>
LA 3516
查看>>