• home > webfront > ECMAS > javascript >

    javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法

    Author:zhoulujun Date:

    javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法呢。或者采用moment js 插件。可以自行查看api,这个js做用日期运算还是蛮好的。但是小项目还是自己动手

    javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法呢

    let now = new Date('2016-12-1');

    let d=now.setDate(now.getDate()+2);

    console.log(now);

    let m= now.setMonth(now.getMonth()+2) ;

    console.log(now);

    或者采用moment.js 插件。可以自行查看api,这个js做用日期运算还是蛮好的。

                    var today=new Date();
                    var dayTimes=24*60*60*1000;
                    var tomorrow= new Date(today.getTime()+dayTimes);
                    var afterTomorrow=new Date(today.getTime()+dayTimes*2);
                    function dayStr(day) {
                        var m=day.getMonth()+1;
                       return "("+(m<10?'0'+m:m)+"月"+day.getDate()+"日)"
                    }



    转载本站文章《javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法》,
    请注明出处:https://www.zhoulujun.cn/html/webfront/ECMAScript/js/2017_1228_8069.html