복붙노트

[JQUERY] 자바 스크립트 또는 jQuery를 함께 현재 월의 첫 번째와 마지막 날짜를 가져 오기 [중복]

JQUERY

자바 스크립트 또는 jQuery를 함께 현재 월의 첫 번째와 마지막 날짜를 가져 오기 [중복]

해결법


  1. 1.아주 간단하게, 더 라이브러리는 필요하지 않습니다 :

    아주 간단하게, 더 라이브러리는 필요하지 않습니다 :

    var date = new Date();
    var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
    var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);
    

    또는 당신이 선호 할 수 :

    var date = new Date(), y = date.getFullYear(), m = date.getMonth();
    var firstDay = new Date(y, m, 1);
    var lastDay = new Date(y, m + 1, 0);
    

    일부 브라우저 있도록, 20 세기에있는 것으로 두 자리 연도를 처리합니다 :

    new Date(14, 0, 1);
    

    1 월 1 일 1914 년가을 피하기 위해 부여 후하여 setFullYear를 사용하여 값을 설정 날짜를 만들 :

    var date = new Date();
    date.setFullYear(14, 0, 1); // 1 January, 14
    

  2. 2.나는 Datejs으로 고정

    나는 Datejs으로 고정

    이것은 첫 번째 날을 경고한다 :

    var fd = Date.today().clearTime().moveToFirstDayOfMonth();
    var firstday = fd.toString("MM/dd/yyyy");
    alert(firstday);
    

    이 마지막 날입니다 :

    var ld = Date.today().clearTime().moveToLastDayOfMonth();
    var lastday = ld.toString("MM/dd/yyyy");
    alert(lastday);
    
  3. from https://stackoverflow.com/questions/13571700/get-first-and-last-date-of-current-month-with-javascript-or-jquery by cc-by-sa and MIT license