[jQuery] 확인 창(confirm), 페이지 이동(location.replace)
익명
2021.04.15 03:13
6,413
0
본문
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를 눌렀다면 변화 없다.
출처: https://88240.tistory.com/173 [shaking blog]
댓글목록 0