XSLT Methods
A version of this page is also available for
4/8/2010
Extensible Stylesheet Language Transformations (XSLT) uses the methods listed in the following table.
Method | Description |
---|---|
Returns the number of the node relative to all siblings. |
|
Returns the number of the nearest ancestor of a node with the requested node name. |
|
Appends newChild as the last child of this node. |
|
Returns the number of the node relative to siblings of the same node name. |
|
Creates a new node that is an exact clone of this node. |
|
Returns the depth within the document tree at which the specified node appears. |
|
Formats the supplied date using the specified formatting options. |
|
Formats the supplied integer using the specified numerical system. |
|
Formats the supplied number using the specified format. |
|
Formats the supplied time using the specified formatting options. |
|
Returns True if this node has children. |
|
Inserts a child node to the left of the specified node or at the end of the list. |
|
Removes the specified child node from the list of children and returns it. |
|
Replaces the specified old child node with the supplied new child node in the set of children of this node, and returns the old child node. |
|
Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes. |
|
Applies the specified pattern-matching operation to this node's context and returns the first matching node. |
|
Processes this node and its children using the supplied Extensible Stylesheet Language Transformations (XSLT) style sheet and returns the resulting transformation. |
|
Processes this node and its children using the supplied XSLT style sheet and returns the resulting transformation in the supplied object. |
|
Returns the unique identifier for the supplied node. |
* denotes an extension to the W3C DOM.