S根據年月實現獲得當月天數

Bright2017發表於2018-12-15
function getDaysInMonth(year,month){
	month = parseInt(month,10);  //parseInt(number,type)這個函式後面如果不跟第2個引數來表示進位制的話,預設是10進位制。
	var temp = new Date(year,month,0);
	return temp.getDate();
}

轉載地址:https://blog.csdn.net/u010987803/article/details/36395315#commentsedit

相關文章