PHP如何結合AJAX刪除資料?

2020-07-16 10:06:28

PHP如何結合AJAX刪除資料?

首先在PHP檔案中接收GET引數,並根據引數刪除資料;

$id = $_GET['id'];

/*刪除資料邏輯*/

然後使用函數「json_encode()」將資料返回;

header('Content-Type:application/json');
json_decode([
	'code' => 1,
	'msg' => 'Delete success'
])

接著在前端使用AJAX請求該檔案;

if (window.XMLHttpRequest)
{
    // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行程式碼
    xmlhttp=new XMLHttpRequest();
}
else
{
    // IE6, IE5 瀏覽器執行程式碼
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
        alert(xmlhttp.responseText);
    }
}
xmlhttp.open("GET","del_data.php?id="+id,true);
xmlhttp.send();

最後判斷請求返回的資料是否成功即可。

推薦教學:《PHP教學

以上就是PHP如何結合AJAX刪除資料?的詳細內容,更多請關注TW511.COM其它相關文章!