Sekcja CDATA to „ sekcja zawartości elementu, która jest oznaczona, aby analizator składni mógł interpretować tylko dane znakowe, a nie znaczniki ”.
Składniowo zachowuje się podobnie do komentarza:
<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>
... ale nadal jest częścią dokumentu:
<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>
Spróbuj zapisać poniższe jako .xhtml
plik ( nie .html
) i otwórz go za pomocą FireFox ( nie Internet Explorer ), aby zobaczyć różnicę między komentarzem a sekcją CDATA; komentarz nie pojawi się, gdy spojrzysz na dokument w przeglądarce, a sekcja 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>
W sekcjach CDATA należy zwrócić uwagę na to, że nie mają one kodowania, więc nie ma możliwości włączenia do nich łańcucha ]]>
. Wszelkie dane znakowe, które zawierają, ]]>
będą musiały - o ile mi wiadomo - być węzłem tekstowym. Podobnie z perspektywy manipulacji DOM nie można utworzyć sekcji CDATA, która zawiera ]]>
:
var myEl = xmlDoc.getElementById("cdata-wrapper");
myEl.appendChild(xmlDoc.createCDATASection("This section cannot contain ]]>"));
Ten kod manipulacji DOM spowoduje zgłoszenie wyjątku (w przeglądarce Firefox) lub spowoduje powstanie źle sformułowanego dokumentu XML: http://jsfiddle.net/9NNHA/