반응형
onbeforeunload
* onBeforeunload 함수 사용시 기본적인 메세지 내용("이페이지를 벗어나시겠습니까?")이 나타난다.
return "message" 는 내용은 저 문구 위에 위치하게 된다
사용방법.
JavaScript 에서
jQuery 에서
HTML Form 에서
* onBeforeunload 함수 사용시 기본적인 메세지 내용("이페이지를 벗어나시겠습니까?")이 나타난다.
return "message" 는 내용은 저 문구 위에 위치하게 된다
사용방법.
JavaScript 에서
window.onbeforeunload = function(){
return "message";
}
jQuery 에서
$(window).bind('beforeunload', function(){
return "message";
});
HTML Form 에서
<body onBeforeunload="return functionName()">
*JavaScript 에서 함수 정의
function functionName(){
return "message";
}
*JavaScript 에서 함수 정의
function functionName(){
return "message";
}
반응형
'전체카테고리' 카테고리의 다른 글
iPad3 아이콘 크기 (0) | 2012.03.27 |
---|---|
iPhone/iPad Touch: Icon.png:icon dimensions (114 x 114) don't meet the size requirements. The icon file must be 57x57 pixels, in .png format. (0) | 2012.03.05 |
icon dimensions (0 x 0) don't meet the size requirements. The icon file must be 57 x 57 pixels, in .png format (0) | 2012.03.05 |
Android 앱 개발 후 원하는 이름으로 변경하기 (5) | 2012.02.29 |
java.io.IOException: Received authentication challenge is null (0) | 2012.02.28 |
Google Code Jam Korea 2012 (0) | 2012.02.22 |
chobbang.php -> chobbang.bread: apache(아파치) 확장자 추가 (0) | 2012.02.22 |
MAC: JAVA JDK 설치 (0) | 2012.02.22 |
댓글