中心思想是:下个月的第0天即为本月的最后一天
var oDate=new Date(); oDate.setMonth(oDate.getDate()+1); oDate.setDate(0); alert(oDate.getDate());