欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js获取当月的最后一天

程序员文章站 2022-03-26 18:40:23
...

以下就是JS代码::

@ author YHC:

  function getCurrentMonthLastDay(){
    	var current=new Date();
    	var currentMonth=current.getMonth();
    	var nextMonth=++currentMonth;
    	
    	var nextMonthDayOne =new Date(current.getFullYear(),nextMonth,1);
    	
    	var minusDate=1000*60*60*24;
    	
    	return new Date(nextMonthDayOne.getTime()-minusDate);
    }

 function getCurrentMonthFirstDay(){
    	var current=new Date();
    	    current.setDate(1);
    	return current;
    }