MutationRecord - Web API 接口参考 编辑

每个 MutationRecord 都代表一个独立的 DOM 变化,在每次随 DOM 变化调用 MutationObserver 的回调函数时,一个相应的 MutationRecord 会被作为参数,传递给回调函数。

属性

属性类型描述
MutationRecord.typeString如果是属性变化,则返回 "attributes"
如果是 characterData 节点变化,则返回 "characterData"
如果是子节点树 childList 变化,则返回 "childList"
MutationRecord.targetNode根据 MutationRecord.type,返回变化所影响的节点。
对于属性 attributes 变化,返回属性变化的节点。
对于 characterData 变化,返回 characterData 节点。
对于子节点树 childList 变化,返回子节点变化的节点。
MutationRecord.addedNodesNodeList返回被添加的节点。
如果没有节点被添加,则该属性将是一个空的 NodeList
MutationRecord.removedNodesNodeList返回被移除的节点。
如果没有节点被移除,则该属性将是一个空的 NodeList
MutationRecord.previousSiblingNode返回被添加或移除的节点之前的兄弟节点,或者 null
MutationRecord.nextSiblingNode返回被添加或移除的节点之后的兄弟节点,或者 null
MutationRecord.attributeNameString返回被修改的属性的属性名,或者 null
MutationRecord.attributeNamespaceString返回被修改属性的命名空间,或者 null
MutationRecord.oldValueString

返回值取决于 MutationRecord.type
对于属性 attributes 变化,返回变化之前的属性值。
对于 characterData 变化,返回变化之前的数据。
对于子节点树 childList 变化,返回 null

注意,如果要让这个属性起作用,在相应的 MutationObserverInit 参数的 MutationObserver observe 方法中,attributeOldValue 或者 characterDataOldValue 必须设置为 true

规范

规范状态备注
DOM
MutationRecord
Living Standard
DOM4
MutationRecord
Obsolete

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:190 次

字数:5609

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文