Розділ CDATA - це " розділ вмісту елементів, який позначений парсером для інтерпретації лише символьних даних, а не розмітки ".
Синтаксично він поводиться аналогічно коментарю:
<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>
... але це все ще є частиною документа:
<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>
Спробуйте зберегти таке у .xhtml
файлі ( не .html
) та відкрийте його за допомогою FireFox ( не Internet Explorer ), щоб побачити різницю між коментарем та розділом CDATA; коментар не з’явиться, якщо ви подивитеся на документ у браузері, тоді як розділ 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>
Що слід зауважити за розділами CDATA, це те, що вони не мають кодування, тому немає можливості включити рядок ]]>
до них. Будь-які дані символів, які містять ]]>
, повинні бути, наскільки я знаю, текстовим вузлом. Так само, з точки зору маніпуляції з DOM, ви не можете створити розділ CDATA, який включає ]]>
:
var myEl = xmlDoc.getElementById("cdata-wrapper");
myEl.appendChild(xmlDoc.createCDATASection("This section cannot contain ]]>"));
Цей маніпуляційний код DOM або буде викидати виняток (у Firefox), або призведе до погано структурованого XML-документа: http://jsfiddle.net/9NNHA/