|
The Dom\HTMLElement classIntroductionRepresents an element in the HTML namespace. Class synopsis
Dom\HTMLElement
extends
Dom\Element
/* Inherited constants */
public
const
int
Dom\Node::DOCUMENT_POSITION_DISCONNECTED = 0x1;
public
const
int
Dom\Node::DOCUMENT_POSITION_PRECEDING = 0x2;
public
const
int
Dom\Node::DOCUMENT_POSITION_FOLLOWING = 0x4;
public
const
int
Dom\Node::DOCUMENT_POSITION_CONTAINS = 0x8;
public
const
int
Dom\Node::DOCUMENT_POSITION_CONTAINED_BY = 0x10;
public
const
int
Dom\Node::DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
/* Inherited properties */
public
readonly
stringnull
$namespaceURI;
public
readonly
stringnull
$prefix;
public
readonly
string
$localName;
public
readonly
string
$tagName;
public
string
$id;
public
string
$className;
public
readonly
Dom\TokenList
$classList;
public
readonly
Dom\NamedNodeMap
$attributes;
public
readonly
Dom\Elementnull
$firstElementChild;
public
readonly
Dom\Elementnull
$lastElementChild;
public
readonly
int
$childElementCount;
public
readonly
Dom\Elementnull
$previousElementSibling;
public
readonly
Dom\Elementnull
$nextElementSibling;
public
string
$innerHTML;
public
string
$substitutedNodeValue;
public
readonly
int
$nodeType;
public
readonly
string
$nodeName;
public
readonly
string
$baseURI;
public
readonly
bool
$isConnected;
public
readonly
Dom\Documentnull
$ownerDocument;
public
readonly
Dom\Nodenull
$parentNode;
public
readonly
Dom\Elementnull
$parentElement;
public
readonly
Dom\NodeList
$childNodes;
public
readonly
Dom\Nodenull
$firstChild;
public
readonly
Dom\Nodenull
$lastChild;
public
readonly
Dom\Nodenull
$previousSibling;
public
readonly
Dom\Nodenull
$nextSibling;
public
stringnull
$nodeValue;
public
stringnull
$textContent;
/* Inherited methods */
/* Not documented yet */
Notes
|