回答編集履歴
2
修正
test
CHANGED
@@ -6,7 +6,9 @@
|
|
6
6
|
|
7
7
|
document.getElementById('onbtn1').onclick = () => {
|
8
8
|
|
9
|
-
getComputedStyle(document.documentElement).getPropertyValue('--body-bgc');
|
9
|
+
//getComputedStyle(document.documentElement).getPropertyValue('--body-bgc');
|
10
|
+
|
11
|
+
//↑このコードは不要だった。
|
10
12
|
|
11
13
|
document.documentElement.style.setProperty('--body-bgc', '#ffffff');
|
12
14
|
|
1
参考サイト追記
test
CHANGED
@@ -13,3 +13,7 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
参考サイト:https://davidwalsh.name/css-variables-javascript
|