var yourCallbackName = function(rs){
console.dir(rs);
//此处填写success后的处理程序。
}
$.ajax({
async:false,type: "get",
url: "http://localhost:8060/common/imagecrop?callback=yourCallbackName",
data: "type="+options.imageType+"&_id="+options.targetId,
dataType: "jsonp"
});
其中yourCallbackName为 毁掉函数名称,但是必须写在js全局范围内,因为jsonp回调用它的时候,是放在单独的<script>里面。
服务器端是这样:res.end("yourCallbackName("+JSON.stringify({code : 1,message : '我了个去啊'})+");");
服务器端的写法,这种格式是对的,其它的格式,有没有就不知道了,试了好多都不行。
原文链接:https://www.f2er.com/json/290240.html