js獲取本週周一的日期

2021-09-02 00:22:42 字數 532 閱讀 8142

var nowtemp = new date();//當前時間

var onedaylong = 24*60*60*1000 ;//一天的毫秒數

var c_time = nowtemp.gettime() ;//當前時間的毫秒時間

var c_day = nowtemp.getday()||7;//當前時間的星期幾

var m_time = c_time - (c_day-1)*onedaylong;//當前周一的毫秒時間

var monday = new date(m_time);//設定周一時間物件

var m_year = monday.getfullyear();

var m_month = monday.getmonth()+1;

var m_date = monday.getdate();

console.log(m_year+'-'+m_month+'-'+m_date)//周一的年月日

主要利用時間的從2023年1月1日到日期的毫秒數,進行時間定位

js獲取本周一的日期 格式為yy mm dd

格式為yy mm dd 除此之外還有本月 本年 今天 明天的日期獲取 時間獲取 var date newdate console.log date 年 var year date.getfullyear console.log year 月 var month date.getmonth 1cons...

Calendar獲取上週周一至本周一的日期

tabstudydetailed record null date date new date datetime 取上週一 00 00 00 calendar cal1 calendar.getinstance cal1.settime date int n1 1 n為推遲的週數,1上週,0本週,1...

java如何獲取本周一(哪天都可以)的日期

今天知道了如何獲得本周一 留做記錄。calendar c calendar.getinstance dateformat format new dateformat yyyy mm dd int day of week c.get calendar.day of week 1 c.add calen...