跨域xml读取

发布于 2024-12-07 02:56:16 字数 540 浏览 0 评论 0原文

我想使用ajax从外域获取xml数据,但不使用Proxi。 有没有办法使用ajax获取xml数据。实际上我想做这样的事情:

enter code here



jQuery.getScript("http://m.jbv.no/mobile/stopmonitoring/xml/OSL",function(data, textStatus){
console.log(data); //data XML returned 
console.log(textStatus); //success
console.log('Load was performed.');
});


$.ajax({url: "http://m.jbv.no/mobile/stopmonitoring/xml/OSL",  dataType:'html',  crossDomain:true,  error:function(jqXHR, textStatus, errorThrown)  {   alert(jqXHR)  },  success: function(data){    alert(data)  }});

I want to get xml data from the foreign domain using ajax,But without using Proxi.
Is there any way to get xml data using ajax. Actually I want to do something like this:

enter code here



jQuery.getScript("http://m.jbv.no/mobile/stopmonitoring/xml/OSL",function(data, textStatus){
console.log(data); //data XML returned 
console.log(textStatus); //success
console.log('Load was performed.');
});


$.ajax({url: "http://m.jbv.no/mobile/stopmonitoring/xml/OSL",  dataType:'html',  crossDomain:true,  error:function(jqXHR, textStatus, errorThrown)  {   alert(jqXHR)  },  success: function(data){    alert(data)  }});

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

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

发布评论

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

评论(1

幸福还没到 2024-12-14 02:56:16

您可以使用 easyxdm javascript 库在跨域之间进行通信。我使用这个库来修复 iframe 或驻留在其他域上的任何其他元素的宽度、高度,由于安全原因,没有其他方法可以与其他域进行通信。
也许这可以帮助你。所以这里是一个链接:

http://easyxdm.net/wp/

You can use easyxdm javascript library for communicating between crossdomains. I used this library for fixing the width, height of iframe or any other element that resides on other domain there was no other way for communicating to other domain because of security reasons.
May be this can help you. So here is a link:

http://easyxdm.net/wp/

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