[jQuery] 확인 창(confirm), 페이지 이동(location.replace)

by 조쉬 posted Sep 06, 2018
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
Yes, No 확인 창 : confirm('메세지 입력');
페이지 이동 : location.replace('이동할 페이지');
$(document).ready(function(){
    $('#Btn').click(function() {
        var result = confirm('Are you sure you want to do this?');

        if(result) {
           //yes
            location.replace('index.php');
        } else {
            //no
        }
    });
});


위 소스 코드 설명 : 

Btn을 클릭했을 시 실행하는 이벤트.

Are you sure you wnat to do this? 라는 메세지와 함께 Yes, No를 선택할 수 있는 메세지 박스가 나타난다.

만약 Yes를 눌렀다면 index.php로 페이지 이동

No를 눌렀다면 변화 없다.