zoukankan      html  css  js  c++  java
  • js月份,日期加一天

    js没有直接可以用的函数,所以只能自己写,其中需要涉及到每个月天数的判断,如果是2月份的话,还要涉及到闰年的判断

     1 var addDate = {
     2         //日期,在原有日期基础上,增加days天数,默认增加1天
     3         setDate:function(date, days){
     4             if (days == undefined || days == '') {
     5                 days = 1;
     6             }
     7             var date = new Date(date);
     8             date.setDate(date.getDate() + days);
     9             var month = date.getMonth() + 1;
    10             var day = date.getDate();
    11             return date.getFullYear() + '-' + this.getFormatDate(month) + '-' + this.getFormatDate(day);
    12         },
    13         //日期月份/天的显示,如果是1位数,则在前面加上'0'
    14         getFormatDate:function(arg){
    15             if (arg == undefined || arg == '') {
    16                 return '';
    17             }
    18             var re = arg + '';
    19             if (re.length < 2) {
    20                 re = '0' + re;
    21             }
    22             return re;
    23         }
    24     }
  • 相关阅读:
    自定义checkbox样式
    自定义select样式
    jsonp
    I/O复用 poll简介
    DOS和DDOS攻击
    TCP状态转换图解析
    Makefile入门
    I/O复用select 使用简介
    替换文本内容
    share memory
  • 原文地址:https://www.cnblogs.com/cnsevennight/p/5945092.html
Copyright © 2011-2022 走看看