0
我是jquery和ajax的新手。是否有可能在PHP腳本中使用ajax,它正在返回值?使用ajax從具有返回值的腳本中獲取
$.ajax({
url:'ajax.php',
method:'post',
dataType:'json',
success:function(response) {
alert(response);
}
});
在我的PHP腳本
<?php
$sum = 1+5;
return $sum; //usually echo(json_encode(array("$sum"))); is used
?>
這甚至可能嗎?
P.S我正在使用return
,因爲在主腳本中這個函數是從另一個函數調用的。但對於AJAX我只需要這個功能。
謝謝。必須調整代碼。 –