zoukankan      html  css  js  c++  java
  • JSjs获取当前时间的前一天/后一天(昨天/当天/明天) 前n天 后n天

    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);
  • 相关阅读:
    2013第51周四开放杂记
    2013第51周三杂记
    2013第51周二eclipse启动优化
    2013 第51周一纠错
    2013第50周日小结
    国内主流开放平台接口了解
    手机加密那点事儿_数值内存加密
    crontab,想说爱你不easy
    SIP基本呼叫
    js正則表達式语法
  • 原文地址:https://www.cnblogs.com/qiao20/p/12457439.html
Copyright © 2011-2022 走看看