时间:2021-07-01 10:21:17 帮助过:5人阅读
url: 'your url' data: {'xx' : 'xx', 'xx2' : 'xx2' success:
type:'GET' dataType: 'jsonp',
jsonp: "callback" jsonpCallback:"jsonpReturn"
});
php中可以这样写:
'jsonpReturn('.jsondecode().')' }
http://www.bkjia.com/PHPjc/440253.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/440253.htmlTechArticle可以使用jquery里面的ajax中的jsonp的方式来访问就可以了。代码如下: url: 'your url' data: {'xx' : 'xx', 'xx2' : 'xx2' success: type:'GET' dataType: 'jsonp',...