그누보드는 아닌 질문입니다.
관련링크
본문
출석체크 프로그램을 뜯어 보는 중인데요.
이전달 다음달 버튼이 있는데 제이쿼리 부분을 아무리 찾아봐도 못찾겠네요.
제이쿼리를 사용한건지도 의문입니다..ㅎㅎㅎ
해당 스크립트를 어떻게 구현했는지 몹시 궁금합니다.
스크립트 고수분의 한수 가르침 기다립니다. 감사합니다.
답변 1
우선 Javascript 파일이 https://www.amorepacificmall.com/kr/ko/pc/ko/js/events-attendance-all-min-20210622135101.js
대략 이부분에서 핸들링되고 있네요. fullcalendar를 쓴 것 같습니다.
this._$prevBtn.on(
"click",
function (a) {
a = moment(this._currentDate)
.subtract(1, "months")
.format(this.DEFAULT_DATE_FORMAT);
this._setCalendar(a);
this._selectedDate = a;
}.bind(this)
);
this._$nextBtn.on(
"click",
function (a) {
a = moment(this._currentDate)
.add(1, "months")
.format(this.DEFAULT_DATE_FORMAT);
this._setCalendar(a);
this._selectedDate = a;
}.bind(this)
);
답변을 작성하시기 전에 로그인 해주세요.