私は、XML DOMオブジェクトにXML文字列を解析するためにはJavaScriptの次の行を使用しています:JavascriptをXMLパースエラー、閉じられていないCDATAセクション
<?xml version="1.0"?>
<event>
<id>41717876</id>
<start>2011-08-16T10:16</start>
<end>2011-08-16T10:16</end>
<title>New Calendar Event</title>
<location>
<line>Your location goes here.</line>
</location>
<description>
<line>Your description goes here.</line>
</description>
<!-- %%spider:url%% -->
<further-info><![CDATA[ hello&goodbye ]]></further-info>
<tag>all</tag>
<url>www.google.com</url>
</event>
:
this._xmlParser = new DOMParser();
this._xmlDoc = this._xmlParser.parseFromString(txt,"text/xml");
私のXML文字列は次のようになります
CDATAセクションが正しく形成されているようです。クローズされていないCDATAセクションにパーサーエラーが表示されるのはなぜですか?