1. 程式人生 > >jq ajax jsonp 對接php寫法

jq ajax jsonp 對接php寫法

$.ajax({

type: "GET",

url: "http://love.com/Test.php",

dataType: "jsonp",

// jsonp:"somfun",

success:function(msg){

console.log(msg.msg);

},

error:function (error) {

console.log(111);

console.log(error);

}

});

 

http://love.com/Test.php

$data['msg']=1;
//echo $_GET['somfun'].'('.json_encode($data).')';
echo $_GET['callback'].'('.json_encode($data).')';