Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MutationRecord

MutationRecord とは、DOM に生じた個々の変更を表すオブジェクトです。このオブジェクトは MutationObserver のコールバック関数に渡されます。

プロパティ

プロパティ 意味
MutationRecord.type String 属性値の変更の場合は "attributes"CharacterData ノードに対する変更の場合は "characterData"、ノードのツリーに対する変更の場合は "childList" を返します。
MutationRecord.target Node

変更の影響を受けたノードを返します。戻り値は MutationRecord.type に応じて以下のように変わります。

attributes の場合、属性が変更された要素となります。

characterData の場合、CharacterData ノードとなります。

childList の場合、子ノードが変更されたノードとなります。

MutationRecord.addedNodes NodeList

追加されたノードを返します。何もノードが追加されていなかった場合は、空の NodeList が返されます。

MutationRecord.removedNodes NodeList 削除されたノードを返します。何もノードが削除されていなかった場合は、空の NodeList が返されます。
MutationRecord.previousSibling Node

追加あるいは削除されたノードの直前にあるノード、もしくは null を返します。

MutationRecord.nextSibling Node 追加あるいは削除されたノードの直後にあるノード、もしくは null を返します。
MutationRecord.attributeName String 変更された属性のローカル名、もしくは null を返します。
MutationRecord.attributeNamespace String 変更された属性の名前空間、もしくは null を返します。
MutationRecord.oldValue String

戻り値は MutationRecord.type に応じて以下のように変わります。

attributes の場合、変更された属性の変更前の属性値となります。

characterData の場合、変更されたノードの変更前のデータとなります。

childList の場合、null となります。

仕様

仕様書 策定状況 備考
DOM
MutationRecord の定義
現行の標準  
DOM4
MutationRecord の定義
草案  

ドキュメントのタグと貢献者

 このページの貢献者: hashedhyphen
 最終更新者: hashedhyphen,