我正在制作日历。卡在要显示天数的地方,具体取决于月份。我换了几个月,天数保持不变。我不明白该怎么做。我将非常感谢详细的解释。日历(http://codepen.io/Ho4ka/pen/PpOgpe)
答案 0 :(得分:0)
这将返回JavaScript中给定年份和月份的天数:
new Date(year, month, 0).getDate();
1月,month
= 1,2月,month
= 2,依此类推。
例如:
new Date(2017, 2, 0).getDate();
=> 27