3

我正在开发一个应用程序,单击一个按钮,存储在 XML 文件中的文档信息列表将显示在屏幕上的<ul>标记中。函数中的当前 JavaScript 是;

    function viewXMLFiles() {
        xmlhttp = new XMLHttpRequest();
        xmlhttp.open("GET", "TestInfo.xml", false);
        xmlhttp.send();

        xmlDoc = xmlhttp.responseXML;

        document.getElementById("docname").innerHTML = xmlDoc.getElementsByTagName("document_name")[0].childNodes[0].nodeValue;
        document.getElementById("filetype").innerHTML = xmlDoc.getElementsByTagName("file_type")[0].childNodes[0].nodeValue;
        document.getElementById("fileloc").innerHTML = pathToRoot + "/" + document.getElementById("docname").innerHTML;

        document.getElementById("docname1").innerHTML = xmlDoc.getElementsByTagName("document_name")[1].childNodes[0].nodeValue;
        document.getElementById("filetype1").innerHTML = xmlDoc.getElementsByTagName("file_type")[1].childNodes[0].nodeValue;
        document.getElementById("fileloc1").innerHTML = pathToRoot + "/" + document.getElementById("docname1").innerHTML;
    }

但我想设置它,以便即使添加更多文件信息,该功能也会显示它。我已经看过Jquery xml parsing loops this question,但我无法让该功能正常工作。这是 XML 文件;

 <document_list>

<document>

    <document_name>Holidays.pdf</document_name><br />

    <file_type>.pdf</file_type> <br />

    <file_location>TEST</file_location> <br />

</document>

<document>

    <document_name>iPhone.jsNotes.docx</document_name><br />

    <file_type>.docx</file_type><br />

    <file_location>TEST</file_location><br />

</document>

 </document_list>

这是我正在使用的 HTML。有一个按钮和<ul>我正在使用的标签;

<button onclick = "viewXMLFiles(); document.getElementById('showDocumentLink').style.display = 'block';">View Document Info</button><br>

    <div id = "doclist">
        <h2>Document 1;</h2>
        <label>Document Name;</label><br><span id = "docname"></span><br>
        <label>File Type</label><br><span id = "filetype"></span><br>
        <label>File Location</label><br><span id = "fileloc"></span><br>
    </div>

    <div id = "doclist">
        <h2>Document 2;</h2>
        <label>Document Name;</label><br><span id = "docname1"></span><br>
        <label>File Type</label><br><span id = "filetype1"></span><br>
        <label>File Location</label><br><span id = "fileloc1"></span><br>
    </div>

谁能帮我把它变成一个循环?我已经链接了 jQuery 和 jQTouch,所以我可以同时使用它们。

非常感谢你提前xx

4

3 回答 3

2

使用以下循环代码。

<script>
    xmlDoc = $.parseXML( xml ),
    $xml = $( xmlDoc );
    var documents = $xml.find('document_list');

    documents.children('document').each(function() {
      var name = $(this).find('document_name').text();
      var file_type = $(this).find('file_type').text();
      var file_location = $(this).find('file_location').text();

      // now do whatever you like with above variable
    });
</script>
于 2013-03-25T10:39:55.907 回答
1

使用 Irfan 的答案作为基础,将值添加到标签中添加一个计数器,然后只需将从 XML 解析循环中获取的值插入到相应的范围中。

<script>
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open("GET", "TestInfo.xml", false);
    xmlhttp.send();

    xmlDoc = xmlhttp.responseXML;
    $xml = $( xmlDoc );
    var documents = $xml.find('document_list');

    var doccount = 0;

    //will be used to find the HTML elements
    var namelabel = "docname"; 
    var typelabel = "filetype"; 
    var locationlabel = "fileloc";

    documents.children('document').each(function() {
      var name = $(this).find('document_name').text();
      var file_type = $(this).find('file_type').text();
      var file_location = $(this).find('file_location').text();

      //after the first document we need to add the number to the span id
      if(doccount > 0){ 
         namelabel = "docname" + doccount;
         typelabel = "filetype" + doccount;
         locationlabel = "fileloc" + doccount;
      }

      //insert the XML values into the label
      $('span#'+namelabel).html(name);
      $('span#'+typelabel).html(file_type);
      $('span#'+locationlabel).html(file_location);  

      //increment the counter
      doccount++;
    });
</script>
于 2013-03-25T12:12:37.620 回答
0

这是一个本机 JavaScript 实现,因此您可以查看如何以这种方式进行操作并进行比较等。

function viewXMLFiles() {
    // var everything
    var xmlhttp = new XMLHttpRequest(),
        xmlDoc,
        nodes, i, j, counter = -1, suffix,
        document_name, file_type, file_location;
    // request page
    xmlhttp.open("GET", "TestInfo.xml", false),
    xmlhttp.send();
    // false meant synchronous req. so can go straight to reading document
    xmlDoc = xmlhttp.responseXML;
    // loop over <document> nodes
    nodes = xmlDoc.childNodes; // shorthand
    j = nodes.length;
    for (i = 0; i < j; ++i) {
        if ('document' === nodes[i].tagName.toLowerCase()) {
            // nodes[i] is a <document>, increment counter
            ++counter;
            // get nodes of intrest
            document_name = nodes[i].getElementsByTagName("document_name")[0];
            file_type = nodes[i].getElementsByTagName("file_type")[0];
            file_location = nodes[i].getElementsByTagName("file_location")[0];

            // do what you want with these, e.g.
            suffix = counter || ''; // don't append a number for 0
            document.getElementById('docname'+suffix).textContent = document_name.textContent;
            document.getElementById('filetype'+suffix).textContent = file_type.textContent;
            document.getElementById('fileloc'+suffix).textContent = pathToRoot + "/" + file_location.textContent;
        }
    }
}

此外,正如我在评论中提到的,您应该考虑 HTML 的有效性;

  • 属性名称/值对的等号周围不应有空格,即<tag attrib="val"/> <tag attrib = "val"/>
  • 每个id属性都应该有一个唯一的值,不与文档上的任何其他属性共享,即 <tag id="shared"/><tag id="shared"/>
于 2013-03-25T14:29:50.933 回答