javaScript 获取本周日期

Posted (⊙o⊙)买噶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaScript 获取本周日期相关的知识,希望对你有一定的参考价值。

//星期

function formatWeek(n){
      let myDate = new Date();
      let theDay=myDate.getDay()
      let week=[‘星期一‘,‘星期二‘,‘星期三‘,‘星期四‘,‘星期五‘,‘星期六‘,‘星期日‘]
      let year=myDate.getFullYear();
      let month=myDate.getMonth()+1;
      let day=myDate.getDate();
      return week[n]
}

//日期

function formatDay(AddDayCount) {
      let myDate = new Date();
      myDate.setDate(myDate.getDate()+AddDayCount);//设置当前日期加几天(减几天)
      let y = myDate.getFullYear();
      let m = myDate.getMonth()+1;
      let d = myDate.getDate();
      return y+"年"+m+"月"+d+"日";
}

for(let i=0;i<7;i++){
      let myDate = new Date();
      let theDay=myDate.getDay()
      if(i<theDay){
               if(i==theDay-1){
                        document.write(formatDay(i-(theDay-1))+‘今天‘+‘............‘)
               }else{
                        document.write(formatDay(i-(theDay-1))+formatWeek(i)+‘............‘)
               }
        }else {
                document.write(formatDay(i-(theDay-1))+formatWeek(i)+‘............‘)
        }
}




























以上是关于javaScript 获取本周日期的主要内容,如果未能解决你的问题,请参考以下文章

javascript获取当天本周本月本年 开始及结束时间

js获取本周日期

Java中获取本周内所有日期

JavaScript日期集合(今日,昨日,本周一,周末 ,月初,月末)

JavaScript日期集合(今日,昨日,本周一,周末 ,月初,月末)

java及javascript两种方式获取YYYY-MM-dd HH:mm:ss格式的日期字符串