Modifier and Type | Method and Description |
---|---|
String |
HTMLElement.getClassName_Rename_Namesake()
The class attribute of the element.
|
String |
HTMLElement.getDir()
Specifies the base direction of directionally neutral text and the
directionality of tables.
|
String |
HTMLDocument.getDomain()
The domain name of the server that served the document, or
null if the server cannot be identified by a domain
name. |
HTMLFormElement |
HTMLButtonElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLFieldSetElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLInputElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLIsIndexElement.getForm()
Returns the FORM element containing this control.
|
HTMLFormElement |
HTMLLabelElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLLegendElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLObjectElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLOptionElement.getForm()
Returns the
FORM element containing this control. |
HTMLFormElement |
HTMLSelectElement.getForm()
The number of options in this
SELECT . |
HTMLFormElement |
HTMLTextAreaElement.getForm()
Returns the
FORM element containing this control. |
String |
HTMLElement.getLang()
Language code defined in RFC 1766.
|
HTMLTableSectionElement |
HTMLTableElement.getTFoot()
Returns the table's
THEAD , or null if none
exists. |
HTMLTableSectionElement |
HTMLTableElement.getTHead()
Returns the table's
CAPTION , or void if none exists. |
String |
HTMLElement.getTitle()
The element's advisory title.
|
void |
HTMLElement.setClassName_Rename_Namesake(String value)
The class attribute of the element.
|
void |
HTMLElement.setDir(String value)
Specifies the base direction of directionally neutral text and the
directionality of tables.
|
void |
HTMLInputElement.setForm(HTMLFormElement value)
Returns the
FORM element containing this control. |
void |
HTMLObjectElement.setForm(HTMLFormElement value)
Returns the
FORM element containing this control. |
void |
HTMLElement.setLang(String value)
Language code defined in RFC 1766.
|
void |
HTMLElement.setTitle(String value)
The element's advisory title.
|
Modifier and Type | Method and Description |
---|---|
Element |
HTMLCollection.namedItem(String name)
Returns the item in the collection matched specified name.
|
Modifier and Type | Method and Description |
---|---|
String |
Element.getAttribute(String name)
Retrieves an attribute value by name.
|
String |
Element.getAttributeNS(String namespaceURI,
String localName)
Retrieves an attribute value by local name and namespace URI.
|
DocumentType |
Document.getDoctype()
The Document Type Declaration associated with this document.
|
Element |
INonElementParentNode.getElementById(String elementId)
Returns the first element within node's descendants whose ID is elementId.
|
String |
Element.getNamespaceURI()
The namespace URI of this node, or null if it is unspecified.
|
String |
Node.getNamespaceURI()
The namespace URI of this node, or null if it is unspecified.
|
Document |
Node.getOwnerDocument()
The Document object associated with this node.
|
Element |
Node.getParentElement()
Gets the parent
Element of this node. |
Node |
Node.getParentNode()
The parent of this node.
|
String |
Element.getPrefix()
The namespace prefix of this node, or null if it is unspecified.
|
String |
Node.getPrefix()
The namespace prefix of this node, or null if it is unspecified.
|
Element |
IParentNode.querySelector(String selectors)
Returns the first element that is a descendant of node that matches selectors.
|
void |
Node.setPrefix(String value)
The namespace prefix of this node, or null if it is unspecified.
|
Modifier and Type | Method and Description |
---|---|
Document |
IDOMImplementation.createDocument(String namespaceURI,
String qualifiedName,
DocumentType doctype)
Creates a DOM Document object of the specified type with its document element.
|
Document |
IDOMImplementation.createDocument(String namespaceURI,
String qualifiedName,
DocumentType doctype)
Creates a DOM Document object of the specified type with its document element.
|
Document |
IDOMImplementation.createHTMLDocument(String title)
Returns a document, with a basic tree already constructed including a title element, unless the title argument is omitted.
|
Node |
Node.insertBefore(Node node,
Node child)
Inserts the node before the existing child node child.
|
boolean |
Node.isDefaultNamespace(String namespaceURI)
This method checks if the specified namespaceURI is the default namespace or not.
|
boolean |
Node.isEqualNode(Node otherNode)
Tests whether two nodes are equal.
|
String |
Node.lookupNamespaceURI(String prefix)
Look up the namespace URI associated to the given prefix, starting from this node.
|
String |
Node.lookupPrefix(String namespaceURI)
Look up the prefix associated to the given namespace URI, starting from this node.
|
Node |
Node.replaceChild(Node node,
Node child)
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
|
Modifier and Type | Method and Description |
---|---|
ICSSRule |
ICSSRuleList.get_Item(int index)
Used to retrieve a CSS rule by method item() (http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRuleList).
|
ICSSRule |
ICSSStyleSheet.getOwnerRule()
If this style sheet comes from an @import rule, the ownerRule attribute will contain the CSSImportRule.
|
ICSSRule |
ICSSStyleDeclaration.getParentRule()
The CSS rule that contains this declaration block or null if this CSSStyleDeclaration is not attached to a CSSRule.
|
ICSSStyleSheet |
ICSSImportRule.getStyleSheet()
The style sheet referred to by this rule, if it has been loaded.
|
Modifier and Type | Method and Description |
---|---|
EventTarget |
Event.getCurrentTarget()
Used to indicate the
IEventTarget whose IEventListener s are currently being processed. |
EventTarget |
Event.getTarget()
Used to indicate the
IEventTarget to which the event was originally dispatched. |
void |
Event.setCurrentTarget(EventTarget value)
Used to indicate the
IEventTarget whose IEventListener s are currently being processed. |
void |
Event.setTarget(EventTarget value)
Used to indicate the
IEventTarget to which the event was originally dispatched. |
Modifier and Type | Method and Description |
---|---|
void |
IEventTarget.addEventListener(String type,
IEventListener listener,
boolean useCapture)
This method allows the registration of event listeners on the event target.
|
void |
IEventTarget.removeEventListener(String type,
IEventListener listener,
boolean useCapture)
This method allows the removal of event listeners from the event target.
|
Modifier and Type | Method and Description |
---|---|
Element |
IElementTraversal.getFirstElementChild()
Returns the first child element node of this element. null if this element has no child elements.
|
Element |
IElementTraversal.getLastElementChild()
Returns the last child element node of this element. null if this element has no child elements.
|
Modifier and Type | Method and Description |
---|---|
Node |
IXPathResult.getSingleNodeValue()
The value of this single node result, which may be
null . |
Node |
IXPathResult.snapshotItem(int index)
Returns the
index th item in the snapshot collection. |