目录

XML DOM - 的 CDATA 部分对象


CDATASection 对象

CDATASection 对象表示文档中的 CDATA 部分。

CDATA 部分包含解析器不会解析的文本。 CDATA 部分内的标签不会被视为标记,实体也不会被扩展。主要目的是包含 XML 片段等材料,而不需要转义所有分隔符。

CDATA 部分中唯一可识别的分隔符是 "]]>" - 它指示 CDATA 部分的结尾。 CDATA 节不能嵌套。

CDATASection 对象属性

Property Description
data Sets or returns the text of this node
length Returns the length of the CDATA section

CDATASection 对象方法

Property Description
appendData() Appends data to the node
deleteData() Deletes data from the node
insertData() Inserts data into the node
replaceData() Replaces data in the node
splitText() Splits the CDATA node into two nodes
substringData() Extracts data from the node