MutationObserverInit
dictionary's optional
childList
property indicates whether or not to monitor the specified node or nodes for the addition or removal of new child nodes.
若
childList
is
false
(the default), adding or removing new nodes does not trigger mutation callbacks. By setting
childList
to
true
, your callback will be invoked any time nodes are added to or removed from the DOM node or nodes being watched.
var options = {
childList: true | false
}
A Boolean value indicating whether or not to invoke the callback function when new nodes are added to or removed from the section of the DOM being monitored.. If
subtree
is
false
, only the node indicated by the observer's target node is monitored for changes. Setting
subtree
to
true
causes addition or removal of nodes anywhere within the subtree rooted at
target
to be reported.
| 规范 | 状态 | 注释 |
|---|---|---|
|
DOM
The definition of 'MutationObserverInit.childList' in that specification. |
实时标准 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
childList
|
Chrome
26
|
Edge 12 | Firefox 14 | IE 11 | Opera 15 |
Safari
7
|
WebView Android ? |
Chrome Android
26
|
Firefox Android 14 | Opera Android 14 |
Safari iOS
7
|
Samsung Internet Android
1.5
|
完整支持
兼容性未知
要求使用供应商前缀或不同名称。