跨域xml读取
我想使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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/