묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
시간이 지나면 자동으로 닫히게 하는 방법 좀..ㅠㅠ;
2002.10.14 02:42
익스창을 시간이 지나면 자동으로 닫히게 할려면 어떻게 해야하나요;;
급하게 소스를 찾고 있는데 안보이네요..ㅠㅠ
급하게 소스를 찾고 있는데 안보이네요..ㅠㅠ
<head>
소스
</head>
<body onLoad="startTime();">
</body>
헤드와헤드사이에 들어가는소스
<script Laguage="Javascript">
function startTime(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
closeTime=hours*3600+mins*60+secs;
closeTime+=5; // This number is how long the window stays open
Timer();
}
function Timer(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
curTime=hours*3600+mins*60+secs
if (curTime>=closeTime){
self.close();}
else{
window.setTimeout("Timer()",1000)}
}
</script>
*시간 조절은 window.setTimeout("Timer()",1000) 에서 숫자를 조정해주면 됩니다.