ホームページ > 記事 > ウェブフロントエンド > 年と month_javascript スキルに基づいて月の日数を取得する JS 実装コード
function getDaysInMonth(year,month){ month = parseInt(month,10); //parseInt(number,type)这个函数后面如果不跟第2个参数来表示进制的话,默认是10进制。 var temp = new Date(year,month,0); return temp.getDate(); }