W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
你需要計算相關(guān)日期范圍例如“上一個月”,“下一個月”。
添加或減去當(dāng)月的數(shù)字,JavaScript的日期構(gòu)造函數(shù)會修復(fù)數(shù)學(xué)知識。
# these examples were written in GMT-6
# Note that these examples WILL work in January!
now = new Date
# => "Sun, 08 May 2011 05:50:52 GMT"
lastMonthStart = new Date 1900+now.getYear(), now.getMonth()-1, 1
# => "Fri, 01 Apr 2011 06:00:00 GMT"
lastMonthEnd = new Date 1900+now.getYear(), now.getMonth(), 0
# => "Sat, 30 Apr 2011 06:00:00 GMT"
JavaScript的日期對象會處理下溢和溢出的月和日,并將相應(yīng)調(diào)整日期對象。例如,你可以要求尋找三月的第42天,你將獲得4月11日。
JavaScript對象存儲日期為從1900開始的每年的年份數(shù),月份為一個0到11的整數(shù),日期為從1到31的一個整數(shù)。在上述解決方案中,上個月的起始日是要求在本年度某一個月的第一天,但月是從-1至10。如果月是-1的日期對象將實際返回為前一年的十二月:
lastNewYearsEve = new Date 1900+now.getYear(), -1, 31
# => "Fri, 31 Dec 2010 07:00:00 GMT"
對于溢出是同樣的:
thirtyNinthOfFourteember = new Date 1900+now.getYear(), 13, 39
# => "Sat, 10 Mar 2012 07:00:00 GMT"
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: