跨域

JSONP只支持GET请求,不支持POST请求;

Ajax调用方式:

$.ajax({

type:"GET",

url:"",

dataType:"jsonp",

jsonp:"callback",//与后端协商

success:function(){},

error:function(){}

})

原文地址:https://www.cnblogs.com/JoeChan/p/4524458.html