ajax 跨域的小记录

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

服务器端要返回串中要写上客户端的callback func:

echo $_GET["jsonpCallback"]. "({\"num\":$num[1]})";


客户端代码

$.ajax({

url: u,

data: {},

dataType: 'jsonp',

jsonp:'jsonpCallback',//这个就是json的处理函数

error: function() {

console.log("fail");

},

success:function(res) {

console.log(res);

$(cell).text(res.num);

}

});

原文链接:https://www.f2er.com/ajax/162377.html

猜你在找的Ajax相关文章