JS 常見的日期格式處理

2021-09-24 07:47:46 字數 1622 閱讀 3065

var now = new date() // 當前日期

var nowdayofweek = now.getday() - 1 // 今天本週的第幾天

var nowday = now.getdate() // 當前日

var nowmonth = now.getmonth() // 當前月

var nowyear = now.getfullyear()// 當前年

// nowyear += (nowyear < 2000) ? 1900 : 0

var lastmonthdate = new date() // 上月日期

lastmonthdate.setdate(1)

lastmonthdate.setmonth(lastmonthdate.getmonth() - 1)

// var lastyear = lastmonthdate.getyear()

var lastmonth = lastmonthdate.getmonth()

複製**

export

function formatdate (date)

if (myweekday < 10)

// console.log(date)

return (myyear + '-' + mymonth + '-' + myweekday)

}複製**

export

function getmonthdays(mymonth)

複製**

export

function

getweekstartdate

() 複製**

export

function

getweekenddate

() 複製**

export

function

getlastweekstartdate

() 複製**

export

function

getlastweekenddate

() 複製**

export

function

getmonthstartdate

() 複製**

export

function

getmonthenddate

() 複製**

export

function

getlastmonthstartdate

() else

return formatdate(lastmonthstartdate)

}複製**

export

function

getlastmonthenddate

() else

return formatdate(lastmonthenddate)

}複製**

js常見的資料轉換格式處理

整理一些常用的js對資料的處理方法 不定時更新。獲取當前年月日 function timestamptotime time 獲取當前年月日時分 function hourandmin time 3.獲得身份證資訊 analyzeidcard idcard 獲取使用者身份證號碼 var usercar...

js的date日期格式

有時候做專案會用到js的date日期格式,因為date 返回的格式不是我們需要的,date 返回格式 thu mar 19 2015 12 00 00 gmt 0800 中國標準時間 而我們則需要這樣的格式 2015 3 19 12 00 00 除非是在後台處理好時間格式,然後在頁面直接顯示。那如何...

js驗證日期格式

function checkdate 2 9 d 10 12 0?13578 3 01 12 0 9 0?1 9 1 8 9 d 2 9 d 11 0?469 30 12 0 9 0?1 9 1 8 9 d 2 9 d 0?2 2 0 8 1 0 9 0?1 9 2468 048 00 0?2 29...