方法:1、使用「new Date(year, month,0)」語句根據指定年份和月份來建立日期對象;2、使用「日期對象.getDate()」語句處理日期對象,返回指定月份的最後一天,即可知道指定月份有幾天。
本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
javascript根據月判定有多少天的方法
#要得到某月有多少天,只需要取得到當月最後一天的日期就行了
方法1:
靈活地呼叫setMonth(),getMonth(),setDate(),getDate(),計算出所需日期
實作程式碼:
function getMonthLength(date) { let d = new Date(date); // 将日期设置为下月一号 d.setMonth(d.getMonth()+1); d.setDate('1'); // 获取本月最后一天 d.setDate(d.getDate()-1); return d.getDate(); }
偵測一下:
getMonthLength("2020-02-1") getMonthLength("2021-02-1") getMonthLength("2022-02-1") getMonthLength("2022-03-1")
方法2:
##原來還有更簡單的方法:直接呼叫getDate()function getMonthLength(year,month) { return new Date(year, month,0).getDate(); }檢測一下:
getMonthLength(2020,02) getMonthLength(2021,02) getMonthLength(2022,02) getMonthLength(2022,03) getMonthLength(2022,04)【相關推薦:
以上是javascript怎麼根據月判定幾天的詳細內容。更多資訊請關注PHP中文網其他相關文章!