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

js指定日期时间加一天

时间:2019-11-02 17:29:30      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:log   start   details   定时   net   UNC   日期时间   判断   nbsp   

function dateAdd(startDate) {

        startDate = new Date(startDate);

        startDate = +startDate + 1000*60*60*24;

        startDate = new Date(startDate);

        var nextStartDate = startDate.getFullYear()+"-"+(startDate.getMonth()+1)+"-"+startDate.getDate();

        return nextStartDate;

    }

 



判断指定时间是否为周末

function isWeekEnd(date){

  if( "天一二三四五六".charAt(new   Date(date).getDay())=="天" ) return true;

  if( "天一二三四五六".charAt(new   Date(date).getDay())=="六"  )  return true;

}

 

 

 

转载https://blog.csdn.net/MyNameIsXiaoLai/article/details/86654252

js指定日期时间加一天

标签:log   start   details   定时   net   UNC   日期时间   判断   nbsp   

原文地址:https://www.cnblogs.com/aknife/p/11783142.html

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