JSjs获取当前时间的前一天/后一天(昨天/明天)

Posted 魔流剑●风之痕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSjs获取当前时间的前一天/后一天(昨天/明天)相关的知识,希望对你有一定的参考价值。

Date curDate = new Date();
var preDate = new Date(curDate.getTime() - 24*60*60*1000); //前一天
var nextDate = new Date(curDate.getTime() + 24*60*60*1000); //后一天

在WdatePicker中全面实行的方法

<input class="Wdate" type="text" id="date_no" onchange="onChangeDate();" name="date_no" onclick="WdatePicker({maxDate:‘%y-%M-{%d-1}‘,isShowClear:false,readOnly:true})"/>

 

在js中如下:

 

Date.prototype.format = function (format) {
        var args = {
            "M+": this.getMonth() + 1,
            "d+": this.getDate(),
            "h+": this.getHours(),
            "m+": this.getMinutes(),
            "s+": this.getSeconds(),
            "q+": Math.floor((this.getMonth() + 3) / 3), //quarter

            "S": this.getMilliseconds()
        };
        if (/(y+)/.test(format)) format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        for (var i in args) {
            var n = args[i];

            if (new RegExp("(" + i + ")").test(format)) format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? n : ("00" + n).substr(("" + n).length));
        }
        return format;
    };

 

var curDate = new Date();
            var stringDate = new Date(curDate.getTime() - 24*60*60*1000).format("yyyy-MM-dd");
            $("#date_no").val(stringDate);

 

以上是昨天和明天的js获取方法。

以上是关于JSjs获取当前时间的前一天/后一天(昨天/明天)的主要内容,如果未能解决你的问题,请参考以下文章

js获取日期昨天,明天以及上月最后一天的日期

js获取前一天

mysql获取当前时间,前一天,后一天

mysql获取当前时间,前一天,后一天

js如何去当前时间前一天的时间和后一天

获取当前日期的前一天,后一天