var year = new Date().getFullYear(); var month = new Date().getMonth(); var nowDate = new Date(year,month,0); //最后一个参数为0,意为获取2018年10月一共多少天 var lastDay = nowDate.getDate(); //31
本文共 238 字,大约阅读时间需要 1 分钟。
var year = new Date().getFullYear(); var month = new Date().getMonth(); var nowDate = new Date(year,month,0); //最后一个参数为0,意为获取2018年10月一共多少天 var lastDay = nowDate.getDate(); //31
转载于:https://www.cnblogs.com/hzx-5/p/11045519.html