XML 应用
本章演示了一些使用 XML、HTTP、DOM 和 JavaScript 的 HTML 应用。
使用的 XML 文档
本章将使用名为 "cd_catalog.xml" 的 XML 文件。
在 HTML 表格中显示 XML 数据
此示例循环遍历每个 <CD> 元素,并在 HTML 表格中显示 <ARTIST> 和 <TITLE> 元素的值。
示例
<table id="demo"></table>
<script>
function loadXMLDoc() {
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
const xmlDoc = xhttp.responseXML;
const cd = xmlDoc.getElementsByTagName("CD");
myFunction(cd);
}
xhttp.open("GET", "cd_catalog.xml");
xhttp.send();
}
function myFunction(cd) {
let table="<tr><th>Artist</th><th>Title</th></tr>";
for (let i = 0; i < cd.length; i++) {
table += "<tr><td>" +
cd[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue +
"</td><td>" +
cd[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue +
"</td></tr>";
}
document.getElementById("demo").innerHTML = table;
}
</script>
</body>
</html>
亲自尝试 »
有关使用 JavaScript 和 XML DOM 的更多信息,请访问 DOM 简介。
在 HTML div 元素中显示第一张 CD
此示例使用一个函数在 id 为 "showCD" 的 HTML 元素中显示第一个 CD 元素。
示例
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
const xmlDoc = xhttp.responseXML;
const cd = xmlDoc.getElementsByTagName("CD");
myFunction(cd, 0);
}
xhttp.open("GET", "cd_catalog.xml");
xhttp.send();
function myFunction(cd, i) {
document.getElementById("showCD").innerHTML =
"艺术家: " +
cd[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue +
"<br>标题: " +
cd[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue +
"<br>年份: " +
cd[i].getElementsByTagName("YEAR")[0].childNodes[0].nodeValue;
}
亲自尝试 »
在 CD 之间导航
为了在上面的示例中导航 CD,请创建 next()
和 previous()
函数
示例
function next() {
// 显示下一张 CD,除非您处于最后一张 CD
if (i < len-1) {
i++;
displayCD(i);
}
}
function previous() {
// 显示上一张 CD,除非您处于第一张 CD
if (i > 0) {
i--;
displayCD(i);
}
}
亲自尝试 »
点击 CD 时显示专辑信息
最后一个示例展示了当用户点击 CD 时如何显示专辑信息
示例
function displayCD(i) {
document.getElementById("showCD").innerHTML =
"艺术家: " +
cd[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue +
"<br>标题: " +
cd[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue +
"<br>年份: " +
cd[i].getElementsByTagName("YEAR")[0].childNodes[0].nodeValue;
}
亲自尝试 »