[jQuery] 확인 창(confirm), 페이지 이동(location.replace)
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로 페..