0

我正在加载 xml,然后使用 js 获取数据。我的问题是每次我需要找到一个属性时,我必须执行一个函数吗?

$(document).find("Item").each(function(){
}

我想说

$(document).find("Item").eq(0).attr("title")

但是,这仅在我将其放置在函数中时才有效

 function parse(document){
 }

这是我的xml

 $.ajax({
    url: 'data.xml',
    dataType: "xml",
    success: parse,
    error: function(){alert("Error: Something wrong with XML");}
});
4

1 回答 1

1

您可以使用jQuery.parseXML

<html>

    <head>
        <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    </head>

    <body>
        <p id="someElement"></p>
        <p id="anotherElement"></p>
        <script>
            var xml = "<rss version='2.0'><channel><title>RSS Title</title></channel></rss>",
                xmlDoc = $.parseXML(xml),
                $xml = $(xmlDoc),
                $title = $xml.find("title");

            /* append "RSS Title" to #someElement */
            $("#someElement").append($title.text());

            /* change the title to "XML Title" */
            $title.text("XML Title");

            /* append "XML Title" to #anotherElement */
            $("#anotherElement").append($title.text());
        </script>
    </body>

</html>
于 2013-06-13T04:52:09.350 回答