[jQuery] 확인 창(confirm), 페이지 이동(location.replace)
2018. 4. 13. 15:34ㆍJavascript/Javascript+jQuery
반응형
$(document).ready(function(){
$('#Btn').click(function() {
var result = confirm('Are you sure you want to do this?');
if(result) {
//yes l
ocation.replace('index.php');
} else {
//no
}
});
});
출처: http://88240.tistory.com/173 [shaking blog]
반응형
'Javascript > Javascript+jQuery' 카테고리의 다른 글
JQuery 를 사용한 무한 스크롤 (Infinite Scroll) 예제 (0) | 2018.04.17 |
---|---|
Auto tab to next input field when fill 4 characters (0) | 2018.04.13 |
POST 전송 (jQuery), POST 이동, POST 새창 (0) | 2018.04.13 |
jquery POST 방식으로 다른 페이지로 이동하는 방법 (0) | 2018.04.13 |
[jQuery] input 박스에 maxlength 만큼 입력했을 때 자동으로 다음 박스로 이동하기 (0) | 2018.04.12 |