当前位置: 首页 > 工具软件 > jquery.jtime > 使用案例 >

jQuery的时间操作

诸葛砚
2023-12-01

在指定的日期上添加天数(date:指定的日期,days:需要添加的天数)

  function addDate(date, days) {
            //判断需要添加的天数是否为空,如果为空,默认为1。
            if (days == undefined || days == '') {
                days = 1;
            }
            var date = new Date(date); //将指定的日期实例化
            date.setDate(date.getDate() + parseInt(days));
            var month = date.getMonth() + 1;
            var day = date.getDate();
            return date.getFullYear() + '-' + getFormaDate(month) + '-' + getFormaDate(day);
        }

在 day 或 mouth上填“0” , 达到“2019-08-08”的效果

    function getFormaDate(arg) {
        if (arg == undefined || art == '') {
            return '';
        }
        var re = arg + '';
        //长度为1的,就在前面加0
        if (re.length < 2) {
            re = '0' + re;
        }
        return re;
    }
 类似资料: