php ajax實現(xiàn)批量刪除的方法:首先實現(xiàn)全選按鈕點擊,并把遍歷的復(fù)選框全部選中;然后使ajax請求到批量刪除的php處理頁面;最后通過if語句實現(xiàn)批量刪除即可。
推薦:《php視頻教程》
通過在后臺與服務(wù)器進(jìn)行少量數(shù)據(jù)交換,ajax 可以使網(wǎng)頁實現(xiàn)異步更新。這意味著在不重新加載整個網(wǎng)頁的情況下,對網(wǎng)頁的某部分進(jìn)行更新。
先是全選按鈕點擊把遍歷的復(fù)選框全部選中
$("#cq").click(function () { $(".cq").prop("checked", $(this).prop("checked"));})js部分,用的是jquery
var chk = "";var check2 = ""; //判斷多個復(fù)選框中的某一個是否被全選function checked() { var count = 0; var checkx = $("#cq"); if (checkx.checked) { check2 = 1;//選中全選按鈕 } else { check2 = 0;//沒選中全選按鈕 } var checkarry = $(".cq"); for (var i = 0; i < checkarry.length; i ) { if (checkarry[i].checked == true) { //選中的操作 count ; } } if (count == 0) { chk = 0;//沒有選中項 } else { chk = 1;//有選中項 }}function all() { //批量刪除 $("#plscdz").click(function () { checked(); if (chk == 1 || check2 == 1) {// 提交 $('#mymodal12').modal('show'); $("#nqrplsc").click(function () {/*給確認(rèn)刪除按鈕加事件*/ $('#mymodal12').modal('hide'); //找選中的主鍵值,用循環(huán)遍歷選中的主鍵值 var cq = $(".cq"); var plstr = ""; for (var i = 0; i < cq.length; i ) { if (cq.eq(i).prop("checked")) { plstr = cq.eq(i).val() "','"; } } plstr = plstr.substr(0, plstr.length - 3); //分隔符占3個字符,截取字符串,去掉最后的"','" $.ajax({ async: false, url: "aa.php", data: {id: plstr}, datatype: "text", type: "post", success: function (data) { if (data.trim() == "ok") { alert("刪除成功"); } else { alert("刪除失敗"); } } }); }); } else if (chk == 0) { alert("請選擇您要刪除的內(nèi)容"); } })}ajax請求到批量刪除的php處理頁面 ,下面就是批量刪除的處理頁面了
session_start();include("dbda.class.php");$db = new dbda();if (!empty($_post["id"])) { $id = $_post["id"]; $sql = "delete from user where id in ('{$id}')"; if ($db->query($sql, 0)) { echo "ok"; } else { echo "no"; }}