| <!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" > <head> <title>JS擷取XML內容</title> <script language="JavaScript"> var xmlDoc= new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false"; xmlDoc.load("WebForm5.xml"); root = xmlDoc.documentElement; //nodes = xmlDoc.documentElement.childNodes; document.all("id").innerText = root.childNodes.item(0).text; document.all("name").innerText = root.childNodes.item(1).text; document.all("email").innerText = root.childNodes.item(2).text; document.all("date").innerText = root.childNodes.item(3).text; </script> </head> <body> <form id="form1" runat="server"> <div> <b>編號: </b><span id="id"></span> <br> <b>姓名: </b><span id="name"></span> <br> <b>信箱: </b><span id="email"></span> <br> <b>日期:</b> <span id="date"></span> <br> </div> </form> </body> </html> |