主頁 > 知識庫 > php ajax confirm 刪除實例詳解

php ajax confirm 刪除實例詳解

熱門標(biāo)簽:地圖標(biāo)注風(fēng)向標(biāo) 銀川ai電話機器人 浙江外呼電話系統(tǒng)軟件 電梯外呼線路板維修視頻 安陽自動外呼系統(tǒng)價格是多少 芒果電銷機器人 上海公司外呼系統(tǒng)線路 臨沂智能電銷機器人軟件 十堰ai電話機器人效果怎么樣

本文主要介紹了php ajax confirm 刪除實例,分享給大家,也給自己留個筆記,具體如下:

button name="del" type="button" class="btn btn-primary btn-xs" id="del">刪除/button>
$("button[name=del]").click(function(){
 var statu = confirm("確定刪除嗎?");
 if(!statu){
 return false;
 }
 var operation = {$res.id};
 $.ajax({
 type:'POST',
 url:"{:url('Sections/del')}",
 data:{idd:operation},
 success:function(msg){
 if(msg == 1){
 alert( '刪除成功' );
 location.reload();
 }else{
 alert( '刪除失敗,請稍后重試' );
 }
 },
 error:function(){
 alert( '刪除失敗,請稍后重試' );
 }
 });
 });
 public function del()
 {
 $id=input('post.idd');
 $res = $this->section->del($id);
 echo json_encode($res);
 }

 /**
 * 刪除
 */
 public function del($id)
 {
 $res = Section::destroy(['id' => $id]);
 return $res;
 }

以上所述是小編給大家介紹的php ajax confirm 刪除實例詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • jQuery ajax中使用confirm,確認(rèn)是否刪除的簡單實例

標(biāo)簽:遂寧 徐州 武威 荊門 寧夏 常州 吐魯番 遵義

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php ajax confirm 刪除實例詳解》,本文關(guān)鍵詞  php,ajax,confirm,刪除,實例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php ajax confirm 刪除實例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于php ajax confirm 刪除實例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章