回答編集履歴

2

DOM4 \(DOM Standard\)

2017/01/11 08:18

投稿

think49
think49

スコア18162

test CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
 
6
6
 
7
- ### MutationObserver
7
+ ### MutationObserver (DOM4 / DOM Standard)
8
8
 
9
9
 
10
10
 
11
- MutationEvent の後継として用意されたAPIです。
11
+ DOM4 で MutationEvent の後継として用意されたAPIです。
12
12
 
13
13
  IE10- では使用できません。
14
14
 

1

MutationEvent \(DOM L3 Events\) を追記

2017/01/11 08:18

投稿

think49
think49

スコア18162

test CHANGED
@@ -4,7 +4,35 @@
4
4
 
5
5
 
6
6
 
7
+ ### MutationObserver
8
+
9
+
10
+
11
+ MutationEvent の後継として用意されたAPIです。
12
+
13
+ IE10- では使用できません。
14
+
15
+
16
+
7
17
  - [MutationObserver - Web API インターフェイス | MDN](https://developer.mozilla.org/ja/docs/Web/API/MutationObserver)
18
+
19
+ - [Mutation Observer - Can I use...](http://caniuse.com/#feat=mutationobserver)
20
+
21
+
22
+
23
+ ### MutationEvent (DOM L3 Events)
24
+
25
+
26
+
27
+ `DOMNodeInserted` 等の MutationEvent 系は後継の DOM Standard で削除されました。
28
+
29
+ これらは `MutationObserver` に置き換えられています。
30
+
31
+
32
+
33
+ - [8.4.1. Interface MutationEvent - UI Events](https://www.w3.org/TR/DOM-Level-3-Events/#interface-mutationevent)
34
+
35
+ - [7.1. DOM Events - DOM Standard 日本語訳](https://triple-underscore.github.io/DOM4-ja.html#dom-events-changes)
8
36
 
9
37
 
10
38