客户端
$.ajax({
url : 'http://www.lg0351.com/app/yanzheng.php?mobile='+uname+'&mobilecode='+ucode,
type:'GET',
dataType:'jsonp',
jsonp:"jsoncallback",
success:function(response, status, xhr){
alert(response.code);
}
});
});
服务端
<?php
header("Content-Type: text/html; charset=utf-8");
//header("Access-Control-Allow-Origin: *");
define('DT_REWRITE', true);
require '../common.inc.php';
$mobile = $_GET['mobile'];
$mobilecode = $_GET['mobilecode'];
$r=$db->get_one("select * FROM destoon_duanxin WHERE code='$mobilecode' and mobile='$mobile' order by id desc");
if($r){
$A['code'] = 1;
echo $_GET['jsoncallback']."(".json_encode($A).")"; }
?>