获取上月最后一天

    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

 

posted @ 2019-06-18 15:44  LaLaLa_heng  阅读(268)  评论(0编辑  收藏  举报