在jquery中从xml中获取节点

发布于 2024-11-27 09:21:28 字数 680 浏览 0 评论 0原文

如果我有以下 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 个消息节点,那么它不起作用。我想知道是否有一种方法可以在不“猜测”的情况下到达特定节点(如果您明白我的意思的话)。

谢谢

If I have the following 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> ...

Is there a way to get the value for response/result/message? I know I can use a find("message") but if there are more than 1 message node then it doesn't work. I would like to know if there is a way to get to a particular node without 'guessing' if you know what I mean.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱殇璃 2024-12-04 09:21:28

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

`$(xml).find("listing").each(function (){
// 做事。
});

you want to use find().each('message)` http://api.jquery.com/jQuery.each/ kinda like

`$(xml).find("listing").each(function (){
// Do stuff.
});

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文