js將xml資料寫入table表格
本章節分享一段程式碼例項,它實現了將xml中的資料寫入table表格的功能。
xml程式碼如下:
[XML] 純文字檢視 複製程式碼<?xml version="1.0" standalone="yes"?> <student> <stuinfo> <stuName>螞蟻部落一</stuName> <stuSex>男</stuSex> <stuAge>18</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落二</stuName> <stuSex>男</stuSex> <stuAge>31</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落三</stuName> <stuSex>男</stuSex> <stuAge>22</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落四</stuName> <stuSex>女</stuSex> <stuAge>25</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落五</stuName> <stuSex>男 </stuSex> <stuAge>32</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落六</stuName> <stuSex>男</stuSex> <stuAge>28</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落七</stuName> <stuSex>女</stuSex> <stuAge>23</stuAge> </stuinfo> <stuinfo> <stuName>螞蟻部落八</stuName> <stuSex>女</stuSex> <stuAge>22</stuAge> </stuinfo> </student>
js程式碼如下:
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script type="text/javascript"> function loadXMLDoc(dname) { if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); }else { xhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xhttp.open("GET", dname, false); xhttp.send(""); return xhttp.responseXML; } function ReadXml() { var xmldoc = loadXMLDoc("Student.xml"); //獲得指定節點 var divmsg = document.getElementById("xmlMsg"); var msg = "<table border='1' id='mytable'><tr><th>姓名</th><th>性別</th><th>年齡</th><tr>"; var nodes = xmldoc.getElementsByTagName("stuinfo"); for (var i = 0; i < nodes.length; i++) { msg += "<tr>"; msg += "<td>" + nodes[i].getElementsByTagName("stuName")[0].firstChild.nodeValue + "</td>"; msg += "<td>" + nodes[i].getElementsByTagName("stuSex")[0].firstChild.nodeValue + "</td>"; msg += "<td>" + nodes[i].getElementsByTagName("stuAge")[0].firstChild.nodeValue + "</td>"; msg += "</tr>"; } msg += "</table>"; divmsg.innerHTML = msg; } </script> </head> <body> <form id="form1"> <div> <input type="button" value="JS讀取XML" onclick="ReadXml()" /><br /> <div id="xmlMsg"> </div> </div> </form> </body> </html>
相關文章
- C# 將資料寫入到Excel表格C#Excel
- 透過 C# 將資料寫入到Excel表格C#Excel
- 如何將 EXCEL 資料寫入資料庫Excel資料庫
- bootsrap table 表格載入完整 post-body.bs.tableboot
- Mysql增量寫入Hdfs(一) --將Mysql資料寫入Kafka TopicMySqlKafka
- vxe-table 單選、實現表格單選資料
- NPM酷庫051:xml2js,解析XML格式資料NPMXMLJS
- MySQL load xml載入資料MySqlXML
- 【Node.js】寫一個資料自動整理成表格的指令碼Node.js指令碼
- 極簡 Node.js 入門 - 3.4 資料夾寫入Node.js
- CSS table表格美化CSS
- tpextbuilder- Table 表格UI
- HTML <table>表格概述HTML
- vue + element UI 中 el-table 資料匯出Excel表格VueUIExcel
- 將資料庫中資料匯出為excel表格資料庫Excel
- qt 寫入xml檔案例項QTXML
- vxe-grid table 實現表格中彈窗選擇資料
- vxe-table 實現表格資料分組,按指定欄位資料分組
- HTML table表格結構HTML
- 【Python】將網格資料寫入到VTK檔案Python
- python如何將資料寫入本地txt文字檔案Python
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- 以太坊·將資料寫入到區塊鏈中區塊鏈
- MySQL Shell import_table資料匯入MySqlImport
- 編寫更快地載入表格
- 如何透過C++ 將資料寫入 Excel 工作表C++Excel
- 實戰 | 將Apache Hudi資料集寫入阿里雲OSSApache阿里
- 使用 ES-Hadoop 將 Spark Streaming 流資料寫入 ESHadoopSpark
- 把list集合的內容寫入到Xml中,通過XmlDocument方式寫入Xml檔案中XML
- element-UI庫Table表格匯出Excel表格UIExcel
- vue-table自定義表格Vue
- table細線表格詳解
- JavaScript刪除table表格中行JavaScript
- JavaScript動態建立table表格JavaScript
- Element-Plus表格:Table自定義合併行資料的最佳實踐
- php如何將資料匯出成excel表格呢?PHPExcel
- vue+element將資料匯出成excel表格VueExcel
- 通過Python將監控資料由influxdb寫入到MySQLPythonUXMySql
- Element-ui元件庫Table表格匯出Excel表格UI元件Excel