在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 个消息节点,那么它不起作用。我想知道是否有一种方法可以在不“猜测”的情况下到达特定节点(如果您明白我的意思的话)。
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想使用
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.
});