OScript API/Built-in Package Index |
By far the vast majority of objects (apart from text) that authors encounter when traversing a document are Element nodes. Assume the following XML document:
<elementexample id="demo"> <subelement1/> <subelement2> <subsubelement/> </subelement2> </elementexample>
When represented using DOM, the top node is a Document node containing an Element node for "elementExample" which contains two child Element nodes, one for "subelement1" and one for "subelement2". "subelement1" contains no child nodes. Elements may have attributes associated with them; since the Element interface inherits from Node, the generic Node interface attribute attributes may be used to retrieve the set of all attributes for an element. There are methods on the Element interface to retrieve either an Attr object by name or an attribute value by name. In XML, where an attribute value may contain entity references, an Attr object should be retrieved to examine the possibly fairly complex sub-tree representing the attribute value. On the other hand, in HTML, where all attributes have simple string values, methods to directly access an attribute value can safely be used as a convenience.
Retrieves the attribute value by name.
Retrieves an attribute node by name.
Retrieves a DOMAttr node by local name and namespace URI.
Retrieves an attribute value by local name and namespace URI.
Returns the list of descendant elements with the given name.
Returns a DOMNodeList of all the DOMElement with a given local name and namespace URI.
The name of the element.
Determines if this element has the attribute specified by attrName
Determines if this element has the attribute specified by namespaceURI and localName
Merges adjacent text nodes.
Removes the specified attribute node.
Removes the attribute specified by the local name and namespace URI.
Adds a new attribute or alters an existing one.
Adds a new attribute node.
Adds a new attribute.
Adds a new attribute.
Retrieves the attribute value by name.
The name of the attribute to retrieve
The value of the attribute.
Retrieves an attribute node by name.
Name of the attribute to retrieve.
The DOMAttr node with the specified name (nodeName) or null if there is no such attribute.
Retrieves a DOMAttr node by local name and namespace URI.
Name of the attribute to retrieve.
Name of the attribute to retrieve.
The DOMAttr node with the specified namespaceURI and localName or null if there is no such attribute.
Retrieves an attribute value by local name and namespace URI.
The namespace URI of the attribute to retrieve.
The local name of the attribute to retrieve.
The attribute value spedified by local name and namespace URI.
Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
The name of the tag to match on. The special value "*" matches all tags.
A list of matching Element nodes.
Returns a DOMNodeList of all the DOMElement with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the DOMDocument tree, starting from this node.
The namespace URI of the elements to match on. The special value "*" matches all namespaces.
The local name of the elements to match on. The special value "*" matches all local names.
A DOMNodeList of all the DOMElement with a given local name and namespace URI
Determines if this element contains the attribute specified by attrName.
The name of the attribute to look for.
TRUE if attrName exists, FALSE otherwise
Determines if this element contains the attribute specified by namespaceURI and localName
The namespace URI of the attribute to look for.
The local name of the attribute to look for.
TRUE if the attribute exists, FALSE otherwise
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer lookups) that depend on a particular document tree structure are to be used.
Note: In cases where the document contains CDATASections, the normalize operation alone may not be sufficient, since XPointers do not differentiate between Text nodes and CDATASection nodes.
Removes an attribute by name. If the removed attribute is known to have a default value, an attribute immediately appears containing the default value.
Name of the attribute to remove.
Removes the specified attribute node. If the removed Attr has a default value it is immediately replaced.
The attribute node to remove.
The Attr node that was removed.
Removes an attribute by local name and namespace URI. If the removed attribute has a default value it is immediately replaced. The replacing attribute has the same namespace URI and local name, as well as the original prefix.
The namespace URI of the attribute to remove.
The local name of the attribute to remove.
Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter. This value is a simple string, it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create an Attr node plus any Text and EntityReference nodes, build the appropriate subtree, and use setAttributeNode to assign it as the value of an attribute.
Name of the attribute to create or alter.
Value to set in string form.
Adds a new attribute node. If an attribute with that name (nodeName) is already present in the element, it is replaced by the new one.
The attribute node to add.
If the newAttr attribute replaces an existing attribute, the replaced Attr node is returned, otherwise undefined is returned.
Adds a new attribute.If an attribute with that local name and namespace URI is already present in the element, it is replaced by the new one..
The DOMAttr node to add to the attribute list.
If the newAttr attribute replaces an existing attribute with the same local name and namespace URI, the replaced DOMAttr node is returned, otherwise undefined is returned.
Adds a new attribute. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. This value is a simple string, it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out.
The namespace URI of the attribute to create or alter.
The qualified name of the attribute to create or alter.
The value to set in string form.
Copyright © 2022 OpenText Corporation. All rights reserved. |