日期獲取本月第一天和最後一天

2021-09-25 14:23:14 字數 1224 閱讀 5975

getfullyear()

//日期物件獲取年份 yyyy

getmonth()

///獲取月份0-11

getdate()

//獲取一月中的第幾天 1-31

setdate

(num)

//傳數字設定本月日期第幾天

newdate

(year ,month,day,hours,

...)

//可以傳字串或數字

newdate

(fullyear, month,0)

.getdate()

;//天數傳0代表倒數第一天,-1代表倒數第二天,反過來1代表第一天,2代表第二天

var nowdate =

newdate()

;var clonenowdate =

newdate()

;var fullyear = nowdate.

getfullyear()

;var month = nowdate.

getmonth()

+1;// getmonth 方法返回 0-11,代表1-12月

var endofmonth =

newdate

(fullyear, month,0)

.getdate()

;// 獲取本月最後一天

function

getfulldate

(targetdate)

else

m = m >

9? m :

'0'+ m;

d = d >

9? d :

'0'+ d;

return y +

'-'+ m +

'-'+ d;};

var enddate =

getfulldate

(clonenowdate.

setdate

(endofmonth));

//當月最後一天

var stardate =

getfulldate

(clonenowdate.

setdate(1

));//當月第一天

獲取本月的第一天和最後一天

獲取本月的第一天和最後一天 var firstdate new date firstdate.setdate 1 第一天var enddate new date firstdate enddate.setmonth firstdate.getmonth 1 enddate.setdate 0 ale...

js中獲取本月第一天和最後一天的日期

話不多說直接上 export function getmonthdate var now newdate 當前日期 var nowmonth now.getmonth 當前月 var nowyear now.getfullyear 當前年 本月的開始時間 var monthstartdate new...

第一天和最後一天的日期

1.某星期第一天和最後一天的日期 dateformat sd new dateformat yyyy mm dd calendar calendar calendar.getinstance locale.china calendar.setfirstdayofweek calendar.monda...