js指定日期时间加一天
Posted ___mouM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js指定日期时间加一天相关的知识,希望对你有一定的参考价值。
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指定日期时间加一天的主要内容,如果未能解决你的问题,请参考以下文章