码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-12-01 13:46:18      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:mon   date()   minutes   sub   curd   clear   next   rda   seconds   

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获取当前时间的前一天/后一天(昨天/明天)

标签:mon   date()   minutes   sub   curd   clear   next   rda   seconds   

原文地址:http://www.cnblogs.com/lr393993507/p/7941248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!