상태표시줄에 시간넣기 정보
기타 상태표시줄에 시간넣기본문
<head> </head> 사이에 아래 소스를 넣습니다..
<script language="JavaScript">
<!--
function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display= today.toLocaleString();
status=display;
}
// -->
</script>
그리고 <body onLoad="runClock()"> 요렇게 넣으면 시간이 나옵니다....
[이 게시물은 관리자님에 의해 2003-08-11 14:20:53 공부할까요?(으)로 부터 이동됨]
<script language="JavaScript">
<!--
function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display= today.toLocaleString();
status=display;
}
// -->
</script>
그리고 <body onLoad="runClock()"> 요렇게 넣으면 시간이 나옵니다....
[이 게시물은 관리자님에 의해 2003-08-11 14:20:53 공부할까요?(으)로 부터 이동됨]
추천
0
0
댓글 2개
우와~
좋은정보감사합니다.