function getDaysInMonth(year,month){ month = parseInt(month,10); //parseInt(number,type)這個函數後面如果不跟第2個參數來表示進制的話,默認是10進制。 var temp = new Date(year,month,0); return temp.getDate(); }