JS獲取當月每天的日期,JS獲取本週每天的日期

2021-10-03 08:00:27 字數 537 閱讀 2191

獲取當前月每天的日期,獲取當前周每天的日期實現**:

呼叫**:

console.log('-----------------', getnowm(), getweekday())
結果:我今天是2020-2-28日

封裝方法:

function getday(num, str) 

// 格式化日期

function formatdate(date) -$-$`;

}// 獲取當前月的天數

function mgetdate()

// 獲取本週的日期

function getweekday() );

}// 獲取當前月的所有日期

function getnowm(e)

return current_month;

}

js 獲取當月天數

vardate1 moment format yyyy vardate2 moment format mm varnum newdate parseint date1 parseint date2 0 getdate vardate1 newdate getfullyear vardate2 new...

JS 獲取日期

function getnowformatdate if strdate 0 strdate 9 var currentdate date.getfullyear seperator1 month seperator1 strdate date.gethours seperator2 date.ge...

JS日期獲取

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...