공지사항 상세보기


제목 안전교육 스킵 하는 방법
작성자 조민혜 조회 484
첨부 첨부파일이 없습니다. 날짜 2019-12-04
내용

아래 블로그 들어가면 방법 나와있습니다!

https://blog.naver.com/arbrehan3th/221537440369



소스코드


var currentPage = nowPageNum;

function goNextPage() {
if (currentPage <= totalPageNum) {
opener.PageMove(currentPage);
console.log(`${currentPage} 페이지를 수강완료했습니다.`);
currentPage += 1;
setTimeout(function() {
goNextPage();
}, 2000);
} else {
opener.PageMove(currentPage);
alert('강의 수강이 완료되었습니다!');
}
}
function runKmuMacro() {
console.log(`현재 ${currentPage} 페이지를 수강중입니다.`);
setTimeout(function () {
goNextPage();
}, 1000)
}
runKmuMacro();




한페이지씩 넘기는 코드

page_complete();next_page();