일정시간 후 실행 (setTimeout)
페이지 정보
본문
<script language=JavaScript>
function openPopWin2(theURL,winName,features,HId) { // 새창띄우기...........
PopWin = window.open(theURL,winName,features);
PopWin.moveTo(0,0);
PopWin.focus();
var HId = HId;
setTime_id = setTimeout("openPopWin3('" + HId+ "')", 1000);
}
function settimeout_onload() {
window.setTimeout("window.open('http://www.daum.net')", 5000) // 1000 == 1초
}
// setTimeout(a,b)은 b초후에 a함수를 실행합니다. 이것은 1회만 실행
// setInterval(a,b)는 b초마다 a함수를 실행합니다. 이것은 무한루프
</script>
function openPopWin2(theURL,winName,features,HId) { // 새창띄우기...........
PopWin = window.open(theURL,winName,features);
PopWin.moveTo(0,0);
PopWin.focus();
var HId = HId;
setTime_id = setTimeout("openPopWin3('" + HId+ "')", 1000);
}
function settimeout_onload() {
window.setTimeout("window.open('http://www.daum.net')", 5000) // 1000 == 1초
}
// setTimeout(a,b)은 b초후에 a함수를 실행합니다. 이것은 1회만 실행
// setInterval(a,b)는 b초마다 a함수를 실행합니다. 이것은 무한루프
</script>
- 이전글onmouse 시 다른 페이지 보여주는 레이어작업 21.02.10
- 다음글[소스]타겟(target) 쓰는 법 21.02.10
댓글목록
등록된 댓글이 없습니다.