AJax技术

Ajax 从XML到生成表格

字号+ 作者:H5之家 来源:H5之家 2017-03-25 16:01 我要评论( )

下面图老师小编跟大家分享Ajax 从XML到生成表格,一起来学习下过程究竟如何进行吧!喜欢就赶紧收藏起来哦~

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
html xmlns="http://www.w3.org/1999/xhtml"
head
titleDynamically Editing Page Content/title
script. type="text/javascript"
var xmlHttp;
function createXMLHttpRequest() {
    if (window.ActiveXObject) {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if (window.XMLHttpRequest) {
        xmlHttp = new XMLHttpRequest();
    }
}
function doSearch() {
    createXMLHttpRequest();
    xmlHttp.onreadystatechange = handleStateChange;
    xmlHttp.open("GET", "dynamicContent.xml", true);
    xmlHttp.send(null);
}
function handleStateChange() {
    if(xmlHttp.readyState == 4) {
        if(xmlHttp.status == 200) {
            clearPreviousResults();
            parseResults();
        }
    }
}
function clearPreviousResults() {
    var header = document.getElementById("header");
    if(header.hasChildNodes()) {
        header.removeChild(header.childNodes[0]);
    }
   var tableBody = document.getElementById("resultsBody");
    while(tableBody.childNodes.length 0) {
        tableBody.removeChild(tableBody.childNodes[0]);
    }
}
function parseResults() {
    var results = xmlHttp.responseXML;
    var property = null;
    var address = "";
    var price = "";
    var comments = "";
    var properties = results.getElementsByTagName("property");
    for(var i = 0; i properties.length; i++) {
        property = properties[i];
        address = property.getElementsByTagName("address")[0].firstChild.nodeValue;
        price = property.getElementsByTagName("price")[0].firstChild.nodeValue;
        comments = property.getElementsByTagName("comments")[0].firstChild.nodeValue;
        addTableRow(address, price, comments);
    }
    var header = document.createElement("h2");
    var headerText = document.createTextNode("Results:");
    header.appendChild(headerText);
    document.getElementById("header").appendChild(header);
    document.getElementById("resultsTable").setAttribute("border", "1");
}
function addTableRow(address, price, comments) {
    var row = document.createElement("tr");
    var cell = createCellWithText(address);
    row.appendChild(cell);
    cell = createCellWithText(price);
    row.appendChild(cell);
    cell = createCellWithText(comments);
    row.appendChild(cell);
    document.getElementById("resultsBody").appendChild(row);
}
function createCellWithText(text) {
    var cell = document.createElement("td");
    var textNode = document.createTextNode(text);
    cell.appendChild(textNode);
    return cell;
}
/script
/head
body
form
    input type="button" value="Search" nclick="doSearch();"/   
/form
span
/span
table
    tbody
    /tbody
/table
/body
/html

来源:

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 编写高效的jQuery代码技巧总结

    编写高效的jQuery代码技巧总结

    2017-03-01 13:04

  • .NET中web开发技术的新革命(ASP.NET2.0,AJAX,Silverlight)

    .NET中web开发技术的新革命(ASP.NET2.0,AJAX,Silverlight)

    2017-02-09 16:00

  • Web开发:分页技术的实现(上)——jBootstrapPage.js+ajax

    Web开发:分页技术的实现(上)——jBootstrapPage.js+ajax

    2017-01-03 17:01

  • 10款实用的Ajax/JavaScript编码工具推荐

    10款实用的Ajax/JavaScript编码工具推荐

    2016-08-10 12:00

网友点评