MutationObserverInit.childList - Web APIs 编辑
The 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.
If 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.
Syntax
var options = { childList: true | false }
Value
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.
Example
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'MutationObserverInit.childList' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论