일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mac terminal command
- relative path
- #binary
- html charset
- html code
- html video
- #CallByAddress
- #자바상속#자바이즈어#is~a
- html5 new tag
- #C++ 연산자함수오버로딩
- #bubbleSort
- git flow
- #2차원배열
- #3차원배열
- #C++ has~a
- html youtube
- docker example
- hyperledger transaction
- 토큰경제
- #1차원배열
- html id
- #android activity
- #JAVASCRIPT
- border-box
- html plug-in
- #다차원포인터
- html object
- html multimedia
- #성적관리프로그램
- 하이퍼레저패브릭
Archives
- Today
- Total
A sentimental robot
Date 본문
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 |
'Web' 카테고리의 다른 글
img (0) | 2018.10.19 |
---|---|
setTimeout 재귀함수 (0) | 2018.10.19 |
onload (0) | 2018.10.19 |
getElementsByTagName (0) | 2018.10.19 |
Background color (0) | 2018.10.19 |