jQuery:
$.ajax({
type: "POST",
url: 'http://127.*.*.*/test.php',
dataType: 'json',
error: function(data){
alert(data.success);
},
});
PHP:
$scwz1="http://www.bai**.com";
echo "{success:$scwz1}";
执行上面代码后,可以发送post,并且有返回值(success
:
"http://www.bai**.com"),但只能执行error里的函数,且alert提示undefined,怎么才能显示网址呢