HTMLElement Class Reference
from PyKDE4.khtml import *
Inherits: DOM.Element → DOM.Node
Subclasses: DOM.HTMLAnchorElement, DOM.HTMLAppletElement, DOM.HTMLAreaElement, DOM.HTMLBRElement, DOM.HTMLBaseElement, DOM.HTMLBaseFontElement, DOM.HTMLBlockquoteElement, DOM.HTMLBodyElement, DOM.HTMLButtonElement, DOM.HTMLDListElement, DOM.HTMLDirectoryElement, DOM.HTMLDivElement, DOM.HTMLFieldSetElement, DOM.HTMLFontElement, DOM.HTMLFormElement, DOM.HTMLFrameElement, DOM.HTMLFrameSetElement, DOM.HTMLHRElement, DOM.HTMLHeadElement, DOM.HTMLHeadingElement, DOM.HTMLHtmlElement, DOM.HTMLIFrameElement, DOM.HTMLImageElement, DOM.HTMLInputElement, DOM.HTMLIsIndexElement, DOM.HTMLLIElement, DOM.HTMLLabelElement, DOM.HTMLLayerElement, DOM.HTMLLegendElement, DOM.HTMLLinkElement, DOM.HTMLMapElement, DOM.HTMLMenuElement, DOM.HTMLMetaElement, DOM.HTMLModElement, DOM.HTMLOListElement, DOM.HTMLObjectElement, DOM.HTMLOptGroupElement, DOM.HTMLOptionElement, DOM.HTMLParagraphElement, DOM.HTMLParamElement, DOM.HTMLPreElement, DOM.HTMLQuoteElement, DOM.HTMLScriptElement, DOM.HTMLSelectElement, DOM.HTMLStyleElement, DOM.HTMLTableCaptionElement, DOM.HTMLTableCellElement, DOM.HTMLTableColElement, DOM.HTMLTableElement, DOM.HTMLTableRowElement, DOM.HTMLTableSectionElement, DOM.HTMLTextAreaElement, DOM.HTMLTitleElement, DOM.HTMLUListElement
Namespace: DOM
Detailed Description
All HTML element interfaces derive from this class. Elements that only expose the HTML core attributes are represented by the base HTMLElement interface. These elements are as follows:
Note: The style attribute for this interface is reserved for future usage.
Methods | |
__init__ (self) | |
__init__ (self, DOM.HTMLElement other) | |
__init__ (self, DOM.Node other) | |
__init__ (self, HTMLElementImpl impl) | |
addCSSProperty (self, DOM.DOMString property, DOM.DOMString value) | |
DOM.HTMLCollection | all (self) |
assignOther (self, DOM.Node other, int elementId) | |
DOM.HTMLCollection | children (self) |
DOM.DOMString | className (self) |
DOM.DOMString | contentEditable (self) |
DOM.DOMString | dir (self) |
DOM.DOMString | id (self) |
DOM.DOMString | innerHTML (self) |
DOM.DOMString | innerText (self) |
bool | isContentEditable (self) |
DOM.DOMString | lang (self) |
removeCSSProperty (self, DOM.DOMString property) | |
setClassName (self, DOM.DOMString a0) | |
setContentEditable (self, DOM.DOMString enabled) | |
setDir (self, DOM.DOMString a0) | |
setId (self, DOM.DOMString a0) | |
setInnerHTML (self, DOM.DOMString html) | |
setInnerText (self, DOM.DOMString text) | |
setLang (self, DOM.DOMString a0) | |
setTitle (self, DOM.DOMString a0) | |
DOM.DOMString | title (self) |
Method Documentation
__init__ | ( | self ) |
__init__ | ( | self, | ||
DOM.HTMLElement | other | |||
) |
__init__ | ( | self, | ||
DOM.Node | other | |||
) |
__init__ | ( | self, | ||
HTMLElementImpl | impl | |||
) |
addCSSProperty | ( | self, | ||
DOM.DOMString | property, | |||
DOM.DOMString | value | |||
) |
DOM.HTMLCollection all | ( | self ) |
Retrieves a collection of all nodes that descend from this node. IE-specific extension.
assignOther | ( | self, | ||
DOM.Node | other, | |||
int | elementId | |||
) |
DOM.HTMLCollection children | ( | self ) |
Retrieves a collection of nodes that are direct descendants of this node. IE-specific extension.
DOM.DOMString className | ( | self ) |
The class attribute of the element. This attribute has been renamed due to conflicts with the "class" keyword exposed by many languages. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-class"> class attribute definition in HTML 4.0.
DOM.DOMString contentEditable | ( | self ) |
Returns the kind of editability that applies to this element.
The returned string is one of:
This function is not part of the DOM specifications as defined by the w3c.
DOM.DOMString dir | ( | self ) |
Specifies the base direction of directionally neutral text and the directionality of tables. See the <a href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-dir"> dir attribute definition in HTML 4.0.
DOM.DOMString id | ( | self ) |
The element's identifier. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-id"> id attribute definition in HTML 4.0.
DOM.DOMString innerHTML | ( | self ) |
The HTML code contained in this element. This function is not part of the DOM specifications as defined by the w3c.
DOM.DOMString innerText | ( | self ) |
The text contained in this element. This function is not part of the DOM specifications as defined by the w3c.
bool isContentEditable | ( | self ) |
Returns whether this element is editable.
This function is not part of the DOM specifications as defined by the w3c.
DOM.DOMString lang | ( | self ) |
Language code defined in RFC 1766. See the <a href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-lang"> lang attribute definition in HTML 4.0.
removeCSSProperty | ( | self, | ||
DOM.DOMString | property | |||
) |
setClassName | ( | self, | ||
DOM.DOMString | a0 | |||
) |
see className
setContentEditable | ( | self, | ||
DOM.DOMString | enabled | |||
) |
Sets the editability of this element.
This function is not part of the DOM specifications as defined by the w3c.
- Parameters:
-
enabled may be one of:
setDir | ( | self, | ||
DOM.DOMString | a0 | |||
) |
see dir
setId | ( | self, | ||
DOM.DOMString | a0 | |||
) |
see id
setInnerHTML | ( | self, | ||
DOM.DOMString | html | |||
) |
Set the HTML content of this node.
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if there is the element does not allow children.
setInnerText | ( | self, | ||
DOM.DOMString | text | |||
) |
Set the text content of this node.
DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if there is the element does not allow children.
setLang | ( | self, | ||
DOM.DOMString | a0 | |||
) |
see lang
setTitle | ( | self, | ||
DOM.DOMString | a0 | |||
) |
see title
DOM.DOMString title | ( | self ) |
The element's advisory title. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-title"> title attribute definition in HTML 4.0.