Date——js 獲取當前日期到之后一個月30天的日期區間


 

 

    var dateList = [];
  let startDate = new Date(); let endDate = new Date(); endDate.setDate(startDate.getDate() + 30); while((endDate.getTime() - startDate.getTime()) >= 0) { let month = (startDate.getMonth() + 1).toString().length === 1 ? "0" + (startDate.getMonth() + 1).toString() : (startDate.getMonth() + 1); let day = startDate.getDate().toString().length === 1 ? "0" + startDate.getDate() : startDate.getDate(); dateList.push(month + "-" + day); startDate.setDate(startDate.getDate() + 1); }
  console.log(dateList)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM