前台构建data数组
$data[‘mobilecode‘]= $mobilecode;
$data[‘a‘]= $a;
echo json_encode($data);//把数组转换成json类型传递给回调函数
后台请求+接收回调
$.ajax({
url: ‘index.php?action=aa‘,//请求的路径
type: ‘POST‘,//请求的方式
data: {telephone: <?php echo $telephone; ?>},//单个传的参数如整个表单提交写法如下:data: $(‘#form1‘).serialize(),
dataType:‘json‘,//json类型
success:function(data) {//回调函数
var aa = eval(data);//转换成php格式
alert(aa.a);//输出前台的$a的值
}
})