XDate.JS 이 작은 플러그인을 소개합니다. 모르신다면 바이두나 구글에서 검색해 보세요
코드는 다음과 같습니다.
firstDate.setDate(1) //첫 번째 날
var endDate = 새 날짜(firstDate);
endDate.setMonth(firstDate.getMonth() 1);
endDate.setDate(0);
alert("첫 번째 날: " new XDate(firstDate).toString('yyyy-MM-dd') " 마지막 날: " new XDate(endDate).toString('yyyy-MM-dd'))
좋아요, 직접 시도해 보세요!