在jquery中从xml获取节点

时间:2011-07-29 16:56:40

标签: jquery-xml

如果我有以下XML:

<?xml version="1.0" encoding="utf-8"?>
<response>
    <status>SUCCESS</status>
    <result>
        <message>
            <field>
                <name>referenceNumber</name>
                <type>string</type>
                <required>true</required>
                <max>8</max>
                <min>0</min>
                <decimal_places>0</decimal_places>
            </field> ...

有没有办法获取响应/结果/消息的值?我知道我可以使用find(“message”)但是如果有超过1个消息节点则它不起作用。我想知道如果你知道我的意思,是否有办法到达某个节点而不“猜测”。

由于

1 个答案:

答案 0 :(得分:0)

你想使用find().each('message)`http://api.jquery.com/jQuery.each/有点像

`$(xml).find(“listing”)。each(function(){     // 做东西。 });