Home > Article > Web Front-end > js implements reading xml file content
This time I will bring you js implementation to read the content of xml files, mainly in the form of code. The following is a practical case, let's take a look.
The html code is as follows
<html> <body> <h1>W3School.com.cn Internal Note</h1> <p> <b>To:</b> <span id="to"></span><br /> <b>From:</b> <span id="from"></span><br /> <b>Message:</b> <span id="message"></span> </p> <script type="text/javascript"> if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","/example/xmle/note.xml",false); xmlhttp.send(); xmlDoc=xmlhttp.responseXML; document.getElementById("to").innerHTML= xmlDoc.getElementsByTagName("to")[0].childNodes[0].nodeValue; document.getElementById("from").innerHTML= xmlDoc.getElementsByTagName("from")[0].childNodes[0].nodeValue; document.getElementById("message").innerHTML= xmlDoc.getElementsByTagName("body")[0].childNodes[0].nodeValue; </script> </body> </html>
XML file content
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Copyright w3school.com.cn --> -<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
Display results:
Related recommendations:
Js reads xml and loads it into the page
Parse the xml file in html (javascript reading)
The above is the detailed content of js implements reading xml file content. For more information, please follow other related articles on the PHP Chinese website!