Thomas J.S.: XML-File laden

Beitrag lesen

Hallo Thomas,

wie kann ich im NN6 mit Javascript XML-Files laden. I

<html>
<body>
<h1>document.load() test</h1>
<script>
var xmlDoc = document.implementation.createDocument("", "test", null);

function documentLoaded(e) {
  alert(xmlDoc.getElementById("id1").firstChild.nodeValue);
}

xmlDoc.addEventListener("load", documentLoaded, false);

xmlDoc.load("ns6-xml-test.xml");
</script>
</body>
</html>
-----
ns6-xml-test.xml:
----
<?xml version="1.0"?>
<!DOCTYPE doc [
<!ATTLIST p id ID #IMPLIED>
]>
<doc>
<p id="id1">Text from sample XML document.</p>
</doc>

grüße
thomas