javascript獲取指定月份的最後一天例項程式碼

螞蟻小編發表於2017-03-16

由於月份的最後一天的日期可能是不一樣的, 因為月份的天數可能是不一樣的,下面介紹一下如何獲取當月份的最後一天的日期。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>獲取指定月份最後一天-螞蟻部落</title> 
<script type="text/javascript">
function getLastDay(year,month){
var new_year = year;
var new_month = month++;
if(month>12){
  new_month -=12;
  new_year++;
}
var new_date = new Date(new_year,new_month,1);
return (new Date(new_date.getTime()-1000*60*60*24)).getDate();
}
window.onload=function(){
  var bt=document.getElementById("bt");
  bt.onclick=function(){
    this.value=getLastDay(2013,11);
  }
}
</script>
<body>
<input id="bt" type="button" value="取2013年11月的最後一天" />
</body>
</html>

以上程式碼實現了我們的需求,可以輸出指定月份的最後一天,程式碼比較簡單這裡就不多介紹了。

相關文章