只读ATTRIBUTE_只读baseURIReturns node's node document's document base URL.
只读CDATA_node is a CDATASection node.
只读childReturns the children.
只读COMMENT_node is a Comment node.
只读DOCUMENT_node is a DocumentFragment node.
只读DOCUMENT_node is a document.
只读DOCUMENT_Set when other is a descendant of node.
只读DOCUMENT_Set when other is an ancestor of node.
只读DOCUMENT_Set when node and other are not in the same tree.
只读DOCUMENT_Set when other is following node.
只读DOCUMENT_只读DOCUMENT_Set when other is preceding node.
只读DOCUMENT_node is a doctype.
只读ELEMENT_node is an element.
只读ENTITY_只读ENTITY_只读firstReturns the first child.
只读isReturns true if node is connected and false otherwise.
只读lastReturns the last child.
只读length只读nextReturns the first following sibling that is an element, and null otherwise.
只读nextReturns the next sibling.
只读nodeReturns a string appropriate for the type of node.
只读nodeReturns the type of node.
只读NOTATION_只读ownerReturns the node document. Returns null for documents.
只读parentReturns the parent element.
只读parentReturns the parent.
只读previousReturns the first preceding sibling that is an element, and null otherwise.
只读previousReturns the previous sibling.
只读PROCESSING_node is a ProcessingInstruction node.
只读TEXT_node is a Text node.
Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.
The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options's capture.
When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.
When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.
When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.
If an AbortSignal is passed for options's signal, then the event listener will be removed when signal is aborted.
The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.
可选options: boolean | AddEventListenerOptionsInserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
动态参数...nodes: (string | Node)[]Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
动态参数...nodes: (string | Node)[]Returns a bitmask indicating the position of other relative to node.
Returns true if other is an inclusive descendant of node, and false otherwise.
Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
Returns node's root.
可选options: GetRootNodeOptionsReturns whether node and otherNode have the same properties.
Removes the event listener in target's event listener list with the same type, callback, and options.
可选options: boolean | EventListenerOptionsReplaces node with nodes, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
动态参数...nodes: (string | Node)[]
The CharacterData abstract interface represents a Node object that contains characters. This is an abstract interface, meaning there aren't any object of type CharacterData: it is implemented by other interfaces, like Text, Comment, or ProcessingInstruction which aren't abstract.