我試圖找出如何使用AJAX例如只是顯示從PHP特定的響應只顯示來自服務器的特定回波響應。我有一個PHP這給下面的響應 -是有可能用ajax
echo 'Success'; //Display only this
//Some other process
echo 'Something else for other process';
JS
$.ajax({
type: "POST",
url: "some.php",
data: {action: 'test'},
dataType:'JSON',
success: function(response){
$('#name_status').html(response);
}
});
只是改變'數據類型: 'JSON''爲'數據類型:' HTML'' –