CDATASection

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

CDATASection 接口用来表示 CDATA 部分,这一部分可以被使用在XML中, CDATA可以包含那些没有转义字符的文本, 这些没有转义的字符包括但不限于 < 和 & ,他们不需要被转义,但在XML中使用时,保持原样就可以了。

在标记中,一个 CDATA 部分格式如下:

<![CDATA[  ... ]]>

例如:

<foo>这是一个CDATA section: <![CDATA[  < > & ]]> 其中包含了一些没有转义的字符。 </foo>

唯一的例外就是,在一个 CDATA section 中不可以使用  CDATA section 本身的闭合标签部分:

<![CDATA[  ]]> 会导致一些错误   ]]>

小笔记:CDATA sections不应该被使用 (without hiding) 在HTML中

Note that CDATA sections should not be used (without hiding) within HTML.

性能

这个接口有没有具体的性能并实现了自己的父母 Text

This interface has no specific properties and implements those of its parent Text.

方法

这个接口有没有具体的方法并实现了自己的父母 Text

This interface has no specific methods and implements those of its parent Text.

译者注:翻译不准,保留原文。

规范

Specification Status Comment
DOM
CDATASection
Living Standard Removed. No change since latest snapshot (DOM4.
DOM4
CDATASection
Recommendation Snapshot from DOM (WHATWG). Removed.
Document Object Model (DOM) Level 3 Core Specification
CDATASection
Recommendation No change from Document Object Model (DOM) Level 2 Core Specification
Document Object Model (DOM) Level 2 Core Specification
CDATASection
Recommendation No change from Document Object Model (DOM) Level 1 Specification.
Document Object Model (DOM) Level 1 Specification
CDATASection
Recommendation Initial definition

文档标签和贡献者