使用 jquery 进行简单的 XML 解析?
抱歉,如果这与我的其他问题类似,但我一直在研究,我想我可以更好地表达它。我正在尝试解析 http://xproshowcasex.channel- 中找到的 XML 文件api.livestream-api.com/2.0/getstream 我所担心的是 isLive 元素。如何使 isLive 状态成为一个对象,这样如果它为 true,我可以做一件事,如果它为 false,我可以做另一件事。下面的代码非常基本,但这就是我所拥有的全部。
$.ajax({
type: "GET"
url: getstreamurl,
dataType: "xml",
success: function(xml) {
}
});
感谢您的帮助。
Sorry if this is similar to my other question, but I've been researching and I think I can phrase it better. I'm trying to parse the XML file found at http://xproshowcasex.channel-api.livestream-api.com/2.0/getstream
All I am worried about is the isLive element. How can I make the isLive status an object so if it is true I can do one thing, and if it is false do another. The code below is pretty basic, but it's all I've got.
$.ajax({
type: "GET"
url: getstreamurl,
dataType: "xml",
success: function(xml) {
}
});
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 跨域请求策略,这看起来可能不起作用 但这里有一个关于使用 jQuery 解析 XML 的教程:使用 jQuery 解析 XML
This looks like it might not work because of the cross-domain request policy but here's a tutorial on XML parsing with jQuery: Parse XML with jQuery
如果您使用 YQL,您可以尝试:
http://james.padolsey.com/javascript/cross-domain- requests-with-jquery/
跨域 AJAX 通过 YQL 输出 JSONP,然后您可以将其导入到您的站点中。这将避免任何跨域问题。
If you're using YQL you can try out:
http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/
The cross domain AJAX outputs JSONP via YQL which you can then import into your site. This will circumvent any cross-domain issues.