$dom. Document

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

childNodes

Inherited From

children

(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

lastChild

Inherited From

lastElementChild

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

parentNode

Inherited From

previousSibling

textContent

Inherited From

Methods

appendChild(newNode)

Parameters:
NameTypeDescription
newNode$dom.Node

DOM node to append

Inherited From

createComment(comment) → {$dom.Comment}

Parameters:
NameTypeDescription
commentstring

The comment string

Returns:
Type: 
$dom.Comment

createElement(tagName) → {$dom.Element}

Parameters:
NameTypeDescription
tagNamestring
Returns:
Type: 
$dom.Element

createElementNS(namespaceURI, qualifiedName) → {$dom.Element}

Parameters:
NameTypeDescription
namespaceURIstring
qualifiedNamestring
Returns:
Type: 
$dom.Element

evaluate(xpathExpression, contextNodeopt, namespaceResolveropt, resultTypeopt) → {$dom.XPathResult}

Parameters:
NameTypeAttributesDescription
xpathExpressionstring
contextNode$dom.Node<optional>

If undefined, the root node will be used.

namespaceResolvernull<optional>

Namespace resolvers are currently not supported.

resultTypenumber<optional>
Returns:
Type: 
$dom.XPathResult

insertBefore(newNode, referenceNode)

Parameters:
NameTypeDescription
newNode$dom.Node

DOM node to append

referenceNode$dom.Node

The node before which newNode is inserted

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:
NameTypeDescription
childNode$dom.Node

DOM node to remove

Inherited From