回答編集履歴
2
テキスト追加
test
CHANGED
@@ -1,51 +1,3 @@
|
|
1
|
-
|
1
|
+
(都合により削除)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
とかやりたいんだったら、早めに [dayjs](https://day.js.org/) を使えるようにしとくんが吉やと思うぞなもし。以下、丸っとコピペしてブラウザで見てちょ。
|
6
|
-
|
7
|
-
```html
|
8
|
-
|
9
|
-
<!DOCTYPE html>
|
10
|
-
|
11
|
-
<html>
|
12
|
-
|
13
|
-
<head>
|
14
|
-
|
15
|
-
|
3
|
+
![イメージ説明](46f37d239edd678b339c18fda72667df.png)
|
16
|
-
|
17
|
-
<script src="https://unpkg.com/dayjs@1.8.21/dayjs.min.js"></script>
|
18
|
-
|
19
|
-
<style>
|
20
|
-
|
21
|
-
span { color: red; }
|
22
|
-
|
23
|
-
</style>
|
24
|
-
|
25
|
-
</head>
|
26
|
-
|
27
|
-
<body>
|
28
|
-
|
29
|
-
<p id="time"/>
|
30
|
-
|
31
|
-
<script>
|
32
|
-
|
33
|
-
const hhmiss = function() {
|
34
|
-
|
35
|
-
const dt = dayjs(new Date()).add(10, 's'); // 現在日時に10秒加算したDateを取得
|
36
|
-
|
37
|
-
const element = document.getElementById("time");
|
38
|
-
|
39
|
-
element.innerHTML = `${dt.format('HH:mm:')}<span>${dt.format('ss')}</span>`;
|
40
|
-
|
41
|
-
};
|
42
|
-
|
43
|
-
setInterval(hhmiss, 1000);
|
44
|
-
|
45
|
-
</script>
|
46
|
-
|
47
|
-
</body>
|
48
|
-
|
49
|
-
</html>
|
50
|
-
|
51
|
-
```
|
1
ソース修正
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
<meta charset='utf-8'>
|
16
16
|
|
17
|
-
<script src="https://
|
17
|
+
<script src="https://unpkg.com/dayjs@1.8.21/dayjs.min.js"></script>
|
18
18
|
|
19
19
|
<style>
|
20
20
|
|