获取指定日期,往后几天的日期,且可以得到日期对应的是星期几

2019-02-21  本文已影响0人  有一种感动叫做丶只有你懂

const getCurrentMonthFirst = function() {
var date = new Date();
var todate = date.getFullYear() + "-" + ((date.getMonth() + 1) < 10 ? ("0" + (date.getMonth() + 1)) : date.getMonth() + 1) + "-" + (date.getDate() < 10 ? ("0" + date.getDate()) : date.getDate());
return todate;
}
/**

上一篇下一篇

猜你喜欢

热点阅读