獲取上月最後一天

    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
相關文章
相關標籤/搜索