<html>
<head>
<script language="JavaScript">
<!--
function init_clock()
{
var type, i, top, obj, clocks;
clocks = new Array();
for (i = 0, top = 0; i < init_clock.arguments.length; i += 2) {
obj = eval('document.'+init_clock.arguments[i]);
if (obj == null) continue;
if ((type = init_clock.arguments[i+1]) < 1 && 11 < type) continue;
clocks[top++] = obj;
clocks[top++] = type;
}
clocks.months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December');
clocks.days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday');
clocks.k_days = new Array('일', '월', '화', '수', '목', '금', '토');
clocks.ampm_str = new Array('AM', 'PM');
clocks.k_ampm_str = new Array('오전', '오후');
if (top > 0) {
document.clocks = clocks;
clock();
}
}
function clock()
{
var i, type, clocks, next_call, str, hour, ampm, now, year2, year4;
clocks = document.clocks;
if (clocks == null) return;
next_call = false;
for (i = 0; i < clocks.length; i += 2) {
obj = clocks[i];
type = clocks[i+1];
now = new Date();
year2 = now.getYear();
year4 = year2;
if (year2 < 1000) year4 = 1900 + year2;
if (year2 >= 100) year2 = year4;
if (type == 1 || type == 2) {
obj.value = clocks.months[now.getMonth()] + ' ' + now.getDate() + ', ' + year4;
if (type == 2)
obj.value = clocks.days[now.getDay()] + ', ' + obj.value;
} else if (type == 3 || type == 4) {
obj.value = year2 + '/' + (now.getMonth()+1) + '/' + now.getDate();
} else if (type == 5 || type == 6) {
obj.value = now.getDate() + '/' + (now.getMonth()+1) + '/' + year2;
} else if (type == 8 || type == 9 || type == 10 || type == 11) {
obj.value = year4 + '년 ' + (now.getMonth()+1) + '월 ' + now.getDate() + '일';
if (type == 9)
obj.value += ' ' + clocks.k_days[now.getDay()] + '요일';
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11) {
hour = now.getHours();
ampm = 0;
if (hour >= 12) {
if (hour > 12) hour -= 12;
ampm = 1;
}
if (type == 10 || type == 11) {
str = clocks.k_ampm_str[ampm] +' '+ hour+'시 '+ now.getMinutes() +'분';
if (type == 11) str += ' ' + now.getSeconds() +'초';
} else {
str = hour +':'+ ((now.getMinutes() < 10) ? '0'+now.getMinutes():now.getMinutes()) +':'+ ((now.getSeconds() < 10) ? '0'+now.getSeconds():now.getSeconds()) +' '+ clocks.ampm_str[ampm];
}
if (type == 7) obj.value = str;
else obj.value += ' ' + str;
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11)
next_call = true;
}
if (next_call)
window.setTimeout("clock();", 1000);
}
// -->
</script>
</head>
<body OnLoad="init_clock('mclock.textclock1', 11);">
아래 init_clock('form1.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다양한 효과를 줄 수 있습니다.
<!--
init_clock(mclock.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다음과 같은 효과를 줄 수 있습니다.
1 : December 4, 2000
2 : Tuesday, December 4, 2000
3 : 2000/12/4
4 : 2000/12/4 1:49:46 PM
5 : 4/12/2000
6 : 4/12/2000 1:50:40 PM
7 : 1:50:58 PM
8 : 2000년 12월 4일
9 : 2000년 12월 4일 화요일
10 : 2000년 12월 4일 오후 1시 51분
11 : 2000년 12월 4일 오후 1시 52분 6초
-->
<form name="mclock">
<input type="text" name="textclock1" size="30" style="border-style:none;">
</form>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
<head>
<script language="JavaScript">
<!--
function init_clock()
{
var type, i, top, obj, clocks;
clocks = new Array();
for (i = 0, top = 0; i < init_clock.arguments.length; i += 2) {
obj = eval('document.'+init_clock.arguments[i]);
if (obj == null) continue;
if ((type = init_clock.arguments[i+1]) < 1 && 11 < type) continue;
clocks[top++] = obj;
clocks[top++] = type;
}
clocks.months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December');
clocks.days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday');
clocks.k_days = new Array('일', '월', '화', '수', '목', '금', '토');
clocks.ampm_str = new Array('AM', 'PM');
clocks.k_ampm_str = new Array('오전', '오후');
if (top > 0) {
document.clocks = clocks;
clock();
}
}
function clock()
{
var i, type, clocks, next_call, str, hour, ampm, now, year2, year4;
clocks = document.clocks;
if (clocks == null) return;
next_call = false;
for (i = 0; i < clocks.length; i += 2) {
obj = clocks[i];
type = clocks[i+1];
now = new Date();
year2 = now.getYear();
year4 = year2;
if (year2 < 1000) year4 = 1900 + year2;
if (year2 >= 100) year2 = year4;
if (type == 1 || type == 2) {
obj.value = clocks.months[now.getMonth()] + ' ' + now.getDate() + ', ' + year4;
if (type == 2)
obj.value = clocks.days[now.getDay()] + ', ' + obj.value;
} else if (type == 3 || type == 4) {
obj.value = year2 + '/' + (now.getMonth()+1) + '/' + now.getDate();
} else if (type == 5 || type == 6) {
obj.value = now.getDate() + '/' + (now.getMonth()+1) + '/' + year2;
} else if (type == 8 || type == 9 || type == 10 || type == 11) {
obj.value = year4 + '년 ' + (now.getMonth()+1) + '월 ' + now.getDate() + '일';
if (type == 9)
obj.value += ' ' + clocks.k_days[now.getDay()] + '요일';
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11) {
hour = now.getHours();
ampm = 0;
if (hour >= 12) {
if (hour > 12) hour -= 12;
ampm = 1;
}
if (type == 10 || type == 11) {
str = clocks.k_ampm_str[ampm] +' '+ hour+'시 '+ now.getMinutes() +'분';
if (type == 11) str += ' ' + now.getSeconds() +'초';
} else {
str = hour +':'+ ((now.getMinutes() < 10) ? '0'+now.getMinutes():now.getMinutes()) +':'+ ((now.getSeconds() < 10) ? '0'+now.getSeconds():now.getSeconds()) +' '+ clocks.ampm_str[ampm];
}
if (type == 7) obj.value = str;
else obj.value += ' ' + str;
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11)
next_call = true;
}
if (next_call)
window.setTimeout("clock();", 1000);
}
// -->
</script>
</head>
<body OnLoad="init_clock('mclock.textclock1', 11);">
아래 init_clock('form1.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다양한 효과를 줄 수 있습니다.
<!--
init_clock(mclock.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다음과 같은 효과를 줄 수 있습니다.
1 : December 4, 2000
2 : Tuesday, December 4, 2000
3 : 2000/12/4
4 : 2000/12/4 1:49:46 PM
5 : 4/12/2000
6 : 4/12/2000 1:50:40 PM
7 : 1:50:58 PM
8 : 2000년 12월 4일
9 : 2000년 12월 4일 화요일
10 : 2000년 12월 4일 오후 1시 51분
11 : 2000년 12월 4일 오후 1시 52분 6초
-->
<form name="mclock">
<input type="text" name="textclock1" size="30" style="border-style:none;">
</form>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
댓글 3개
Photofly
19년 전
좋네요...감사합니다...^^
19년 전
감사~~
18년 전
감사합니다. 잘 쓰겠습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 404 | ||
| 7929 | 9년 전 | 323 | ||
| 7928 | 9년 전 | 414 | ||
| 7927 | 9년 전 | 329 | ||
| 7926 | 9년 전 | 661 | ||
| 7925 | 9년 전 | 346 | ||
| 7924 | 9년 전 | 334 | ||
| 7923 | 9년 전 | 337 | ||
| 7922 | 9년 전 | 373 | ||
| 7921 | 9년 전 | 395 | ||
| 7920 | 9년 전 | 318 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 487 | ||
| 7917 | 9년 전 | 324 | ||
| 7916 | 9년 전 | 401 | ||
| 7915 | 9년 전 | 400 | ||
| 7914 | 9년 전 | 409 | ||
| 7913 | 9년 전 | 568 | ||
| 7912 | 9년 전 | 415 | ||
| 7911 | 9년 전 | 362 | ||
| 7910 | 9년 전 | 402 | ||
| 7909 | 9년 전 | 502 | ||
| 7908 | 9년 전 | 419 | ||
| 7907 | 9년 전 | 364 | ||
| 7906 | 9년 전 | 387 | ||
| 7905 | 9년 전 | 363 | ||
| 7904 | 9년 전 | 350 | ||
| 7903 | 9년 전 | 343 | ||
| 7902 | 9년 전 | 557 | ||
| 7901 |
|
9년 전 | 727 | |
| 7900 | 9년 전 | 579 | ||
| 7899 | 9년 전 | 374 | ||
| 7898 | 9년 전 | 379 | ||
| 7897 | 9년 전 | 334 | ||
| 7896 | 9년 전 | 355 | ||
| 7895 | 9년 전 | 462 | ||
| 7894 | 9년 전 | 384 | ||
| 7893 | 9년 전 | 329 | ||
| 7892 | 9년 전 | 384 | ||
| 7891 | 9년 전 | 757 | ||
| 7890 | 9년 전 | 1188 | ||
| 7889 | 9년 전 | 742 | ||
| 7888 |
limsy1987
|
9년 전 | 543 | |
| 7887 | 9년 전 | 542 | ||
| 7886 | 9년 전 | 428 | ||
| 7885 | 9년 전 | 398 | ||
| 7884 | 9년 전 | 402 | ||
| 7883 | 9년 전 | 396 | ||
| 7882 | 9년 전 | 443 | ||
| 7881 | 9년 전 | 433 | ||
| 7880 | 9년 전 | 554 | ||
| 7879 | 9년 전 | 456 | ||
| 7878 | 9년 전 | 1210 | ||
| 7877 | 9년 전 | 746 | ||
| 7876 | 9년 전 | 476 | ||
| 7875 | 9년 전 | 554 | ||
| 7874 |
|
9년 전 | 802 | |
| 7873 | 9년 전 | 515 | ||
| 7872 | 9년 전 | 668 | ||
| 7871 | 9년 전 | 476 | ||
| 7870 | 9년 전 | 600 | ||
| 7869 | 9년 전 | 431 | ||
| 7868 | 9년 전 | 436 | ||
| 7867 | 9년 전 | 418 | ||
| 7866 | 9년 전 | 482 | ||
| 7865 | 9년 전 | 445 | ||
| 7864 | 9년 전 | 508 | ||
| 7863 | 9년 전 | 506 | ||
| 7862 | 9년 전 | 461 | ||
| 7861 | 9년 전 | 625 | ||
| 7860 | 9년 전 | 616 | ||
| 7859 | 9년 전 | 406 | ||
| 7858 | 9년 전 | 698 | ||
| 7857 | 9년 전 | 1069 | ||
| 7856 | 9년 전 | 513 | ||
| 7855 | 9년 전 | 744 | ||
| 7854 | 9년 전 | 726 | ||
| 7853 | 9년 전 | 575 | ||
| 7852 | 9년 전 | 503 | ||
| 7851 | 9년 전 | 500 | ||
| 7850 | 9년 전 | 580 | ||
| 7849 | 9년 전 | 354 | ||
| 7848 | 9년 전 | 407 | ||
| 7847 | 9년 전 | 647 | ||
| 7846 | 9년 전 | 450 | ||
| 7845 | 9년 전 | 410 | ||
| 7844 | 9년 전 | 387 | ||
| 7843 | 9년 전 | 408 | ||
| 7842 | 9년 전 | 393 | ||
| 7841 | 9년 전 | 379 | ||
| 7840 | 9년 전 | 402 | ||
| 7839 | 9년 전 | 431 | ||
| 7838 | 9년 전 | 514 | ||
| 7837 | 9년 전 | 350 | ||
| 7836 | 9년 전 | 394 | ||
| 7835 | 9년 전 | 469 | ||
| 7834 |
|
9년 전 | 1187 | |
| 7833 | 9년 전 | 419 | ||
| 7832 | 9년 전 | 409 | ||
| 7831 | 9년 전 | 555 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기