<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년 전
감사합니다. 잘 쓰겠습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2051 | ||
| 229 | 20년 전 | 3131 | ||
| 228 | 20년 전 | 3322 | ||
| 227 | 20년 전 | 2387 | ||
| 226 | 20년 전 | 5468 | ||
| 225 | 20년 전 | 2515 | ||
| 224 | 20년 전 | 2962 | ||
| 223 | 20년 전 | 4199 | ||
| 222 | 20년 전 | 2603 | ||
| 221 | 20년 전 | 2286 | ||
| 220 | 20년 전 | 3673 | ||
| 219 | 20년 전 | 2065 | ||
| 218 | 20년 전 | 3561 | ||
| 217 | 20년 전 | 2473 | ||
| 216 | 20년 전 | 2904 | ||
| 215 | 20년 전 | 2218 | ||
| 214 | 20년 전 | 3332 | ||
| 213 | 20년 전 | 2911 | ||
| 212 | 20년 전 | 3043 | ||
| 211 | 20년 전 | 2143 | ||
| 210 | 20년 전 | 1888 | ||
| 209 | 20년 전 | 2342 | ||
| 208 | 20년 전 | 1970 | ||
| 207 | 20년 전 | 1670 | ||
| 206 | 20년 전 | 1852 | ||
| 205 | 20년 전 | 3943 | ||
| 204 | 20년 전 | 1672 | ||
| 203 | 20년 전 | 2006 | ||
| 202 | 20년 전 | 2352 | ||
| 201 | 20년 전 | 1820 | ||
| 200 | 20년 전 | 2948 | ||
| 199 | 20년 전 | 2004 | ||
| 198 | 20년 전 | 2083 | ||
| 197 | 20년 전 | 3646 | ||
| 196 | 20년 전 | 2976 | ||
| 195 | 20년 전 | 2088 | ||
| 194 | 20년 전 | 10239 | ||
| 193 | 20년 전 | 2240 | ||
| 192 | 20년 전 | 1593 | ||
| 191 | 20년 전 | 2658 | ||
| 190 | 20년 전 | 2283 | ||
| 189 | 20년 전 | 1678 | ||
| 188 | 20년 전 | 1471 | ||
| 187 | 20년 전 | 1903 | ||
| 186 | 20년 전 | 1704 | ||
| 185 | 20년 전 | 1744 | ||
| 184 | 20년 전 | 2343 | ||
| 183 | 20년 전 | 1548 | ||
| 182 | 20년 전 | 1480 | ||
| 181 | 20년 전 | 1621 | ||
| 180 | 20년 전 | 2714 | ||
| 179 | 20년 전 | 1797 | ||
| 178 | 20년 전 | 1849 | ||
| 177 | 20년 전 | 1975 | ||
| 176 | 20년 전 | 1797 | ||
| 175 | 20년 전 | 1870 | ||
| 174 | 20년 전 | 1692 | ||
| 173 | 20년 전 | 2056 | ||
| 172 | 20년 전 | 1781 | ||
| 171 | 20년 전 | 2553 | ||
| 170 | 20년 전 | 2265 | ||
| 169 | 20년 전 | 2545 | ||
| 168 | 20년 전 | 1470 | ||
| 167 | 20년 전 | 1572 | ||
| 166 | 20년 전 | 2144 | ||
| 165 | 20년 전 | 1614 | ||
| 164 | 20년 전 | 3763 | ||
| 163 | 20년 전 | 2653 | ||
| 162 | 20년 전 | 2074 | ||
| 161 | 20년 전 | 2782 | ||
| 160 | 20년 전 | 1727 | ||
| 159 | 20년 전 | 1601 | ||
| 158 | 20년 전 | 2559 | ||
| 157 | 20년 전 | 1483 | ||
| 156 | 20년 전 | 1730 | ||
| 155 | 20년 전 | 3226 | ||
| 154 | 20년 전 | 1885 | ||
| 153 | 20년 전 | 1617 | ||
| 152 | 20년 전 | 4945 | ||
| 151 | 20년 전 | 4567 | ||
| 150 | 20년 전 | 3509 | ||
| 149 | 20년 전 | 3778 | ||
| 148 | 20년 전 | 7065 | ||
| 147 | 20년 전 | 3547 | ||
| 146 | 20년 전 | 2615 | ||
| 145 | 20년 전 | 2609 | ||
| 144 | 20년 전 | 7164 | ||
| 143 | 20년 전 | 4594 | ||
| 142 | 20년 전 | 1898 | ||
| 141 | 20년 전 | 3249 | ||
| 140 | 20년 전 | 1956 | ||
| 139 | 20년 전 | 1565 | ||
| 138 | 20년 전 | 2297 | ||
| 137 | 20년 전 | 1774 | ||
| 136 | 20년 전 | 1450 | ||
| 135 | 20년 전 | 1782 | ||
| 134 | 20년 전 | 2963 | ||
| 133 | 20년 전 | 2441 | ||
| 132 | 20년 전 | 1704 | ||
| 131 | 20년 전 | 1634 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기