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); } });