ajax跨域的解决办法

前端之家收集整理的这篇文章主要介绍了ajax跨域的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://www.cnblogs.com/sunxucool/p/3433992.html

追求永无止境,在google的过程中,无意中发现了一个专门用来解决跨域问题的jQuery插件-jquery-jsonp

有第一种方式的基础,使用jsonp插件也就比较简单了,server端代码无需任何改动。

来看一下如何使用jquery-jsonp插件解决跨域问题吧。

var url="http://localhost:8080/WorkGroupManagment/open/getGroupById"
    +?id=1&callback=?";
$.jsonp({
  url": url,success": function(data) {
    $(#current-group").text(当前工作组:"+data.result.name);
  },0)">error": function(d,msg) {
    alert(Could not find user "+msg);
  }
});
原文链接:https://www.f2er.com/ajax/162316.html

猜你在找的Ajax相关文章