javascript 브라우저 x버튼 클릭시 동작.(브라두져 닫기 동작)
페이지 정보
본문
<!DOCTYPE html>
<html>
<body onbeforeunload=\"return myFunction()\">
<p>Close this window, press F5 or click on the link below to invoke the onbeforeunload event.</p>
<a href=\"http://www.w3schools.com\">Click here to go to w3schools.com</a>
<script>
function myFunction() {
return \"Write something clever here...\";
}
</script>
</body>
</html>
<html>
<body onbeforeunload=\"return myFunction()\">
<p>Close this window, press F5 or click on the link below to invoke the onbeforeunload event.</p>
<a href=\"http://www.w3schools.com\">Click here to go to w3schools.com</a>
<script>
function myFunction() {
return \"Write something clever here...\";
}
</script>
</body>
</html>
관련링크
- 이전글php, javascript, asp, jsp 리다이렉트 처리. 20.02.21
- 다음글javascript 자바스크립트 날짜에 해당 월 주차 구하기(달력) 20.02.21
댓글목록
등록된 댓글이 없습니다.