new $dom.Document()
Extends
Members
beginIndex
Non-standard extension: The first index in the source of this node at parse time
- Inherited From
childElementCount
Number of child nodes
- Inherited From
childNodes
- Inherited From
children
- Inherited From
(nullable) documentElement :Element
The root element representing the document.
Type:
- Element
endIndex
Non-standard extension: The end index in the source of this node at parse time
- Inherited From
firstChild
- Inherited From
firstElementChild
- Inherited From
lastChild
- Inherited From
lastElementChild
- Inherited From
lineNumber
Non-standard extension: The line number in the source of this node
- Inherited From
nextSibling
- Inherited From
nodeName
- Inherited From
nodeType
- Inherited From
nodeValue
- Inherited From
ownerDocument
- Inherited From
parentNode
- Inherited From
previousSibling
- Inherited From
textContent
- Inherited From
Methods
appendChild(newNode)
Parameters:
Name | Type | Description |
---|---|---|
newNode | $dom. | DOM node to append |
- Inherited From
createComment(comment) → {$dom.Comment}
Parameters:
Name | Type | Description |
---|---|---|
comment | string | The comment string |
Returns:
- Type:
- $dom.
Comment
createElement(tagName) → {$dom.Element}
Parameters:
Name | Type | Description |
---|---|---|
tagName | string |
Returns:
- Type:
- $dom.
Element
createElementNS(namespaceURI, qualifiedName) → {$dom.Element}
Parameters:
Name | Type | Description |
---|---|---|
namespaceURI | string | |
qualifiedName | string |
Returns:
- Type:
- $dom.
Element
evaluate(xpathExpression, contextNodeopt, namespaceResolveropt, resultTypeopt) → {$dom.XPathResult}
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
xpathExpression | string | ||
contextNode | $dom. | <optional> | If undefined, the root node will be used. |
namespaceResolver | null | <optional> | Namespace resolvers are currently not supported. |
resultType | number | <optional> |
Returns:
- Type:
- $dom.
XPathResult
insertBefore(newNode, referenceNode)
Parameters:
Name | Type | Description |
---|---|---|
newNode | $dom. | DOM node to append |
referenceNode | $dom. | The node before which newNode is inserted |
- Inherited From
remove()
removes the object from the tree it belongs to.
- Inherited From
removeChild(childNode)
removes a child node from the DOM and returns the removed node
Parameters:
Name | Type | Description |
---|---|---|
childNode | $dom. | DOM node to remove |
- Inherited From