JSONP + PHP 跨域回调

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

用JSONP要改两个地方

下包:https://github.com/jaubourg/jquery-jsonp

<script type="text/javascript" src="3G/js/jquery.jsonp.js"></script>

客户端

				$.ajax({  
					type : "POST",async:false,url :'http://localhost/car.PHP',dataType : "jsonp",//数据类型为jsonp  
					jsonp: "jsonpCallback",//服务端用于接收callback调用的function名的参数  
					success : function(data){  
						alert("Result:"+data.msg)  
					},error:function(){  
						alert('fail');  
					}  
				});   


服务端

<?PHP
 $jsonp = $_GET['jsonpCallback'];   
echo  $jsonp."({\"msg\":\"OK!!\"})";
?> 
原文链接:https://www.f2er.com/json/290119.html

猜你在找的Json相关文章