0

我正在尝试检索一个 xml 文件,并在页面上显示内容,但到目前为止我无法让它工作。我可以确认文件已成功检索,因为我在网络捕获中获得了 200。我尝试为 $title 放置一个警告框,但它是空白的。

我不知道我在这里做错了什么。任何帮助将不胜感激。谢谢

下面是我的标记

<div id="textArea">This is a test</div>

MyScript.js

$(document).ready(function () {
    $.ajax({
        type: "GET",
        url: "BooksCatalog.xml",
        dataType: "xml",
        success: function (result) {
            var xmlDoc = $.parseXML(result),
            $xml = $(xmlDoc),
            $title = $xml.find("title");
            $("#textArea").append($title.text());        
        }
    });
});

图书目录.xml

<?xml version="1.0" encoding="utf-8" ?>
<catalog>
  <book id="bk101">
    <author>Gambardella, Matthew</author>
    <title>XML Developer's Guide</title>
    <genre>Computer</genre>
    <price>44.95</price>
    <publish_date>2000-10-01</publish_date>
    <description>
      An in-depth look at creating applications
      with XML.
    </description>
  </book>
  <book id="bk102">
    <author>Ralls, Kim</author>
    <title>Midnight Rain</title>
    <genre>Fantasy</genre>
    <price>5.95</price>
    <publish_date>2000-12-16</publish_date>
    <description>
      A former architect battles corporate zombies,
      an evil sorceress, and her own childhood to become queen
      of the world.
    </description>
  </book>
</catalog>
4

1 回答 1

1

我相信问题是对 parseXML 的调用。jQuery 应该已经返回了解析结果,因此这一步不是必需的,并且可能会导致问题。尝试将其注释掉并简单地调用

$("#textArea").append($(result).find('title')); 
于 2013-11-10T21:23:01.117 回答