質問編集履歴
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -29,6 +29,12 @@
|
|
29
29
|
|
30
30
|
|
31
31
|
例)
|
32
|
+
|
33
|
+
**html**
|
34
|
+
|
35
|
+
<div class="example" id="example"></div>
|
36
|
+
|
37
|
+
|
32
38
|
|
33
39
|
**stylesheet.css**
|
34
40
|
|
@@ -62,7 +68,7 @@
|
|
62
68
|
|
63
69
|
```
|
64
70
|
|
65
|
-
var element = document.getElementById( "
|
71
|
+
var element = document.getElementById( "example" ) ;
|
66
72
|
|
67
73
|
|
68
74
|
|
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -56,9 +56,27 @@
|
|
56
56
|
|
57
57
|
### 試したこと
|
58
58
|
|
59
|
-
参考url
|
59
|
+
参考url。
|
60
60
|
|
61
61
|
https://lab.syncer.jp/Web/API_Interface/Reference/IDL/CSSStyleDeclaration/getPropertyValue/#IDL-CSSOMString
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
var element = document.getElementById( ".example" ) ;
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
var cssStyleDeclaration = getComputedStyle( element, null ) ;
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
var a = cssStyleDeclaration.getPropertyValue( "color" ) ;
|
74
|
+
|
75
|
+
```
|
76
|
+
|
77
|
+
のような形で記述しましたが、動作せず。
|
78
|
+
|
79
|
+
|
62
80
|
|
63
81
|
|
64
82
|
|
2
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
javaで変更後のcssの属性値を取得したい
|
1
|
+
javascriptで変更後のcssの属性値を取得したい
|
test
CHANGED
File without changes
|
1
タグの編集
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|