note

타이머 메서드 본문

JavaScript/기본

타이머 메서드

투한 2012. 3. 15. 10:46











<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//윈도우가 로드될 때
	window.onload = function (){
		alert('3초후 이페이지는 종료됩니다.');
		//3초후에 함수를 실행합니다.
		window.setTimeout(function (){
			window.close();
		}, 3000);
	};
</script>
</head>
<body>

</body>
</html>


그리 잘 작동되진 않는다