标签: javascript jquery
使用JavaScript获取当月的天数是否有效?
答案 0 :(得分:1)
function _getDates(year, month) { return new Date(year, month, 0).getDate(); // 0 + number of days } console.log(_getDates(2016, 07))