Web
Date
GOD03219
2018. 10. 19. 13:39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 |
<html>
<title>10.19</title>
<head>
<script language="javascript">
function showClock() {
var currentDate = new Date();
var divClock = document.getElementById("divClock");
if (currentDate.getHours() >= 12)
var a = "오후"
else a = "오전"
var msg = "현재 시간" + a + currentDate.getHours() + "시" + currentDate.getMinutes() + "분" + currentDate.getSeconds() + "초";
divClock.innerText = msg;
setTimeout(showClock, 1000); // 재귀함수
}
</script>
</head>
<body onload="showClock()">
<div id="divClock" class="clock"></div>
</body>
</html>
|
cs |