class XMLDocument
package js.html
extends Document › Node › EventTarget
@:native("XMLDocument")Available on js
The XMLDocument interface represent an XML document. It inherits from the generic Document
and does not add any specific methods or properties to it: nevertheless, several algorithms behave differently with the two types of documents.
Documentation XMLDocument by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Variables
Methods
Inherited Variables
Defined by Document
read onlydocumentElement:Element
Returns the Element
that is a direct child of the document. For HTML documents, this is normally the HTMLElement
element.
read onlyembeds:HTMLCollection
Returns a list of the embedded embed
elements within the current document.
read onlyfullscreenElement:Element
The element that's currently in full screen mode for this document.
read onlyimplementation:DOMImplementation
Returns the DOM implementation associated with the current document.
read onlylastStyleSheetSet:String
Returns the name of the style sheet set that was last enabled. Has the value null
until the style sheet is changed by setting the value of document.selectedStyleSheetSet
.
onfullscreenchange:Function
Is an EventHandler
representing the code to be called when the fullscreenchange
event is raised.
onfullscreenerror:Function
Is an EventHandler
representing the code to be called when the fullscreenerror
event is raised.
onselectionchange:Function
Is an EventHandler
representing the code to be called when the selectionchange
event is raised.
onvisibilitychange:Function
Is an EventHandler
representing the code to be called when the visibilitychange
event is raised.
read onlypreferredStyleSheetSet:String
Returns the preferred style sheet set as specified by the page author.
read onlystyleSheetSets:DOMStringList
Returns a list of the style sheet sets available on the document.
read onlyvisibilityState:VisibilityState
Returns a string
denoting the visibility state of the document. Possible values are visible
, hidden
, prerender
, and unloaded
.
Defined by Node
read onlybaseURI:String
Returns a DOMString
representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'
.
read onlychildNodes:NodeList
read onlyfirstChild:Node
Returns a Node
representing the first direct child node of the node, or null
if the node has no child.
read onlyisConnected:Bool
Returns a boolean indicating whether or not the Node is connected (directly or indirectly) to the context object, e.g. the Document
object in the case of the normal DOM, or the ShadowRoot
in the case of a shadow DOM.
read onlylastChild:Node
Returns a Node
representing the last direct child node of the node, or null
if the node has no child.
read onlynextSibling:Node
Returns a Node
representing the next node in the tree, or null
if there isn't such node.
read onlynodeName:String
Returns a DOMString
containing the name of the Node
. The structure of the name will differ with the node type. E.g. An HTMLElement
will contain the name of the corresponding tag, like 'audio'
for an HTMLAudioElement
, a Text
node will have the '#text'
string, or a Document
node will have the '#document'
string.
read onlynodeType:Int
Returns an unsigned short
representing the type of the node. Possible values are:
ELEMENT_NODE |
1 |
ATTRIBUTE_NODE (deprecated) |
2 |
TEXT_NODE |
3 |
CDATA_SECTION_NODE (deprecated) |
4 |
ENTITY_REFERENCE_NODE (deprecated) |
5 |
ENTITY_NODE (deprecated) |
6 |
PROCESSING_INSTRUCTION_NODE |
7 |
COMMENT_NODE |
8 |
DOCUMENT_NODE |
9 |
DOCUMENT_TYPE_NODE |
10 |
DOCUMENT_FRAGMENT_NODE |
11 |
NOTATION_NODE (deprecated) |
12 |
read onlyownerDocument:HTMLDocument
Returns the Document
that this node belongs to. If the node is itself a document, returns null
.
read onlyparentElement:Element
read onlyparentNode:Node
Returns a Node
that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null
.
read onlypreviousSibling:Node
Returns a Node
representing the previous node in the tree, or null
if there isn't such node.
Inherited Methods
Defined by Document
convertPointFromNode(point:DOMPointInit, from:Text, ?options:Null<ConvertCoordinateOptions>):DOMPoint
convertPointFromNode(point:DOMPointInit, from:Element, ?options:Null<ConvertCoordinateOptions>):DOMPoint
convertPointFromNode(point:DOMPointInit, from:HTMLDocument, ?options:Null<ConvertCoordinateOptions>):DOMPoint
Throws:
null | DOMError |
---|
convertQuadFromNode(quad:DOMQuad, from:Text, ?options:Null<ConvertCoordinateOptions>):DOMQuad
convertQuadFromNode(quad:DOMQuad, from:Element, ?options:Null<ConvertCoordinateOptions>):DOMQuad
convertQuadFromNode(quad:DOMQuad, from:HTMLDocument, ?options:Null<ConvertCoordinateOptions>):DOMQuad
Throws:
null | DOMError |
---|
convertRectFromNode(rect:DOMRectReadOnly, from:Text, ?options:Null<ConvertCoordinateOptions>):DOMQuad
convertRectFromNode(rect:DOMRectReadOnly, from:Element, ?options:Null<ConvertCoordinateOptions>):DOMQuad
convertRectFromNode(rect:DOMRectReadOnly, from:HTMLDocument, ?options:Null<ConvertCoordinateOptions>):DOMQuad
Throws:
null | DOMError |
---|
createAttributeNS(namespace:String, name:String):Attr
Creates a new attribute node in a given namespace and returns it.
Throws:
null | DOMError |
---|
createCDATASection(data:String):CDATASection
Creates a new CDATA node and returns it.
Throws:
null | DOMError |
---|
createElement(localName:String, ?options:Null<ElementCreationOptions>):Element
createElement(localName:String, ?options:String):Element
Creates a new element with the given tag name.
Throws:
null | DOMError |
---|
createElementNS(namespace:String, qualifiedName:String, ?options:Null<ElementCreationOptions>):Element
createElementNS(namespace:String, qualifiedName:String, ?options:String):Element
Creates a new element with the given tag name and namespace URI.
Throws:
null | DOMError |
---|
createExpression(expression:String, ?resolver:String ‑> Null<String>):XPathExpression
createExpression(expression:String, ?resolver:Function):XPathExpression
createExpression(expression:String, ?resolver:Null<XPathNSResolver>):XPathExpression
Throws:
null | DOMError |
---|
@:value({ whatToShow : cast 4294967295 })createNodeIterator(root:Node, whatToShow:Int = cast 4294967295, ?filter:Node ‑> Int):NodeIterator
@:value({ whatToShow : cast 4294967295 })createNodeIterator(root:Node, whatToShow:Int = cast 4294967295, ?filter:Function):NodeIterator
@:value({ whatToShow : cast 4294967295 })createNodeIterator(root:Node, whatToShow:Int = cast 4294967295, ?filter:NodeFilter):NodeIterator
createProcessingInstruction(target:String, data:String):ProcessingInstruction
@:value({ force : 0.0, rotationAngle : 0.0, radiusY : 0, radiusX : 0, clientY : 0, clientX : 0, screenY : 0, screenX : 0, pageY : 0, pageX : 0, identifier : 0 })createTouch(?view:Window, ?target:EventTarget, identifier:Int = 0, pageX:Int = 0, pageY:Int = 0, screenX:Int = 0, screenY:Int = 0, clientX:Int = 0, clientY:Int = 0, radiusX:Int = 0, radiusY:Int = 0, rotationAngle:Float = 0.0, force:Float = 0.0):Touch
Creates a Touch
object.
createTouchList(touches:Array<Touch>):TouchList
createTouchList(touch:Touch, touches:Rest<Touch>):TouchList
createTouchList():TouchList
Creates a TouchList
object.
@:value({ whatToShow : cast 4294967295 })createTreeWalker(root:Node, whatToShow:Int = cast 4294967295, ?filter:Node ‑> Int):TreeWalker
@:value({ whatToShow : cast 4294967295 })createTreeWalker(root:Node, whatToShow:Int = cast 4294967295, ?filter:Function):TreeWalker
@:value({ whatToShow : cast 4294967295 })createTreeWalker(root:Node, whatToShow:Int = cast 4294967295, ?filter:NodeFilter):TreeWalker
enableStyleSheetsForSet(name:String):Void
Enables the style sheets for the specified style sheet set.
@:value({ type : 0 })evaluate(expression:String, contextNode:Node, ?resolver:String ‑> Null<String>, type:Int = 0, ?result:Dynamic):XPathResult
@:value({ type : 0 })evaluate(expression:String, contextNode:Node, ?resolver:Function, type:Int = 0, ?result:Dynamic):XPathResult
@:value({ type : 0 })evaluate(expression:String, contextNode:Node, ?resolver:Null<XPathNSResolver>, type:Int = 0, ?result:Dynamic):XPathResult
Throws:
null | DOMError |
---|
getAnimations():Array<Animation>
Returns an array of all Animation
objects currently in effect, whose target elements are descendants of the document
.
getElementsByClassName(classNames:String):HTMLCollection
Returns a list of elements with the given class name.
getElementsByTagName(localName:String):HTMLCollection
Returns a list of elements with the given tag name.
getElementsByTagNameNS(namespace:String, localName:String):HTMLCollection
Returns a list of elements with the given tag name and namespace.
Throws:
null | DOMError |
---|
hasFocus():Bool
Returns true
if the focus is currently located anywhere inside the specified document.
Throws:
null | DOMError |
---|
@:value({ deep : false })importNode(node:Node, deep:Bool = false):Node
Returns a clone of a node from an external document.
Throws:
null | DOMError |
---|
Defined by Node
appendChild(node:Node):Node
Adds the specified childNode argument as the last child to the current node.
If the argument referenced an existing node on the DOM tree, the node will be detached from its current position and attached at the new position.
@throws DOMError
@:value({ deep : false })cloneNode(deep:Bool = false):Node
Clone a Node
, and optionally, all of its contents. By default, it clones the content of the node.
Throws:
null | DOMError |
---|
compareDocumentPosition(other:Node):Int
Compares the position of the current node against another node in any other document.
contains(other:Node):Bool
Returns a Boolean
value indicating whether a node is a descendant of a given node or not.
getRootNode(?options:Null<GetRootNodeOptions>):Node
Returns the context object's root which optionally includes the shadow root if it is available.
insertBefore(node:Node, child:Node):Node
isDefaultNamespace(namespace:String):Bool
isEqualNode(node:Node):Bool
Returns a Boolean
which indicates whether or not two nodes are of the same type and all their defining data points match.
isSameNode(node:Node):Bool
Returns a Boolean
value indicating whether or not the two nodes are the same (that is, they reference the same object).
lookupNamespaceURI(prefix:String):String
Accepts a prefix and returns the namespace URI associated with it on the given node if found (and null
if not). Supplying null
for the prefix will return the default namespace.
lookupPrefix(namespace:String):String
Returns a DOMString
containing the prefix for a given namespace URI, if present, and null
if not. When multiple prefixes are possible, the result is implementation-dependent.
removeChild(child:Node):Node
Removes a child node from the current element, which must be a child of the current node.
Throws:
null | DOMError |
---|
replaceChild(node:Node, child:Node):Node
Replaces one child Node
of the current one with the second one given in parameter.
Throws:
null | DOMError |
---|