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