我使用ajax發佈了一些數據。我想操縱這些數據並返回到調用的jQuery腳本。如何將數據從PHP返回給jQuery ajax調用
這裏是我的jQuery:
$.ajax({
type: "POST",
url: "somescript.php",
datatype: "html",
data: dataString,
success: function() {
//do something;
}
});
這裏是我的服務器上somescript.php:
<?php
//manipulate data
$output = some_function(); //function outputs a comma-separated string
return $output;
?>
我是在服務器端正確地這樣做,以及如何訪問返回ajax調用完成時的字符串?
使用成功:功能(數據){警報(數據);}提醒空。 – user191688 2010-03-09 17:35:11