첫 번째 유형: JS는 예약된 시간에 자동으로 창을 닫습니다
두 번째 유형: 프롬프트 없이 JS로 창을 닫으려면 링크를 클릭하세요
창 닫기
세 번째 유형: 창에 js 코드 자동 종료를 묻는 메시지가 표시되지 않습니다.
IE6-7 JS에서 프롬프트 없이 창을 닫는 방법
방법 1:
js 코드function CloseWin() //브라우저를 닫을지 묻는 메시지를 표시하지 않습니다.
{
window.opener=null
//window.opener=top;
window.open("","_self")
window.close()
}
방법 2:
open.htmljs 코드
function open_complex_self() {
var obj_window = window.open('close.html', '_self' );
obj_window.opener = 창
obj_window.focus()
}
js 코드
window.close()
첨부:
//프롬프트를 사용한 일반 닫기function closeie(){
window.close();
}
//메시지를 표시하지 않고 IE6 닫기
function closeie6(){
window.opener=null;
window.close();
}
//메시지를 표시하지 않고 IE7 닫기
function closeie7 (){
window.open('','_top');
window.top.close();
}