Package | Description |
---|---|
elemental.dom | |
elemental.js.dom |
Modifier and Type | Interface and Description |
---|---|
interface |
CDATASection
A CDATA Section can be used within XML to include extended portions of unescaped text, such that the symbols < and & do not need escaping as they normally do within XML when used as text.
|
interface |
Comment
A comment is used to add notations within markup; although it is generally not displayed, it is still available to be read in the source view (in Firefox: View -> Page Source). These are represented in HTML and XML as content between
<!-- and --> . |
interface |
Text
In the DOM, the Text interface represents the textual content of an Element or Attr. If an element has no markup within its content, it has a single child implementing Text that contains the element's text. However, if the element contains markup, it is parsed into information items and Text nodes that form its children.
|
Modifier and Type | Class and Description |
---|---|
class |
JsCDATASection |
class |
JsCharacterData |
class |
JsComment |
class |
JsText |
Copyright © 2018. All rights reserved.