Una sezione CDATA è " una sezione del contenuto dell'elemento contrassegnata per il parser da interpretare come solo dati di carattere, non markup " .
Sintatticamente, si comporta in modo simile a un commento:
<exampleOfAComment>
<!--
Since this is a comment
I can use all sorts of reserved characters
like > < " and &
or write things like
<foo></bar>
but my document is still well-formed!
-->
</exampleOfAComment>
... ma fa ancora parte del documento:
<exampleOfACDATA>
<![CDATA[
Since this is a CDATA section
I can use all sorts of reserved characters
like > < " and &
or write things like
<foo></bar>
but my document is still well formed!
]]>
</exampleOfACDATA>
Prova a salvare quanto segue come .xhtml
file ( non .html
) e aprilo utilizzando FireFox ( non Internet Explorer ) per vedere la differenza tra il commento e la sezione CDATA; il commento non apparirà quando guarderai il documento in un browser, mentre la sezione CDATA:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
<head>
<title>CDATA Example</title>
</head>
<body>
<h2>Using a Comment</h2>
<div id="commentExample">
<!--
You won't see this in the document
and can use reserved characters like
< > & "
-->
</div>
<h2>Using a CDATA Section</h2>
<div id="cdataExample">
<![CDATA[
You will see this in the document
and can use reserved characters like
< > & "
]]>
</div>
</body>
</html>
Qualcosa da prendere in considerazione con le sezioni CDATA è che non hanno codifica, quindi non c'è modo di includere la stringa ]]>
in esse. Tutti i dati sui personaggi che contiene ]]>
dovranno invece - per quanto ne so - essere un nodo di testo. Allo stesso modo, dal punto di vista della manipolazione del DOM non è possibile creare una sezione CDATA che includa ]]>
:
var myEl = xmlDoc.getElementById("cdata-wrapper");
myEl.appendChild(xmlDoc.createCDATASection("This section cannot contain ]]>"));
Questo codice di manipolazione DOM genererà un'eccezione (in Firefox) o genererà un documento XML mal strutturato: http://jsfiddle.net/9NNHA/