すべての主要なブラウザーはDOMParserAPIを実装しているため、XMLをDOMに解析してから、XPath、getElementsByTagNameなどを使用してクエリを実行できるようです。
ただし、解析エラーの検出は難しいようです。 DOMParser.prototype.parseFromString
常に有効なDOMを返します。解析エラーが発生すると、返されるDOMに<parsererror>
要素が含まれますが、主要なブラウザーごとにわずかに異なります。
サンプルJavaScript:
xmlText = '<root xmlns="http://default" xmlns:other="http://other"><child><otherr:grandchild/></child></root>';
parser = new DOMParser();
dom = parser.parseFromString(xmlText, 'application/xml');
console.log((new XMLSerializer()).serializeToString(dom));
Operaでの結果:
DOMのルートは<parsererror>
要素です。
<?xml version="1.0"?><parsererror xmlns="http://www.mozilla.org/newlayout/xml/parsererror.xml">Error<sourcetext>Unknown source</sourcetext></parsererror>
Firefoxでの結果:
DOMのルートは<parsererror>
要素です。
<?xml-stylesheet href="chrome://global/locale/intl.css" type="text/css"?>
<parsererror xmlns="http://www.mozilla.org/newlayout/xml/parsererror.xml">XML Parsing Error: prefix not bound to a namespace
Location: http://fiddle.jshell.net/_display/
Line Number 1, Column 64:<sourcetext><root xmlns="http://default" xmlns:other="http://other"><child><otherr:grandchild/></child></root>
---------------------------------------------------------------^</sourcetext></parsererror>
Safariでの結果:
<root>
要素は正しく解析されますが、OperaおよびFirefoxの要素とは異なる名前空間にネストされて<parsererror>
います。<parsererror>
<root xmlns="http://default" xmlns:other="http://other"><parsererror xmlns="http://www.w3.org/1999/xhtml" style="display: block; white-space: pre; border: 2px solid #c77; padding: 0 1em 0 1em; margin: 1em; background-color: #fdd; color: black"><h3>This page contains the following errors:</h3><div style="font-family:monospace;font-size:12px">error on line 1 at column 50: Namespace prefix otherr on grandchild is not defined
</div><h3>Below is a rendering of the page up to the first error.</h3></parsererror><child><otherr:grandchild/></child></root>
XMLドキュメントのどこかで解析エラーが発生したかどうかを検出する簡単なクロスブラウザーの方法がありませんか?<parsererror>
または、さまざまなブラウザが生成する可能性のある要素ごとにDOMにクエリを実行する必要がありますか?