溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ajax如何實(shí)現(xiàn)改變狀態(tài)和刪除無(wú)刷新

發(fā)布時(shí)間:2021-05-18 12:47:14 來(lái)源:億速云 閱讀:152 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)ajax如何實(shí)現(xiàn)改變狀態(tài)和刪除無(wú)刷新的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

1. 01.php為主程序,調(diào)用smarty模板遍歷輸出:

<?php
  include './include/Mysql.class.php';
  include './libs/Smarty.class.php';
  $db=new Mysql;
  $smarty=new Smarty;
  $lists=$db->getALL('users');
  $smarty->assign('lists',$lists);
  $smarty->display('list.html');
?>

2. list.html模板:內(nèi)容結(jié)合JS ajax使用:

<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>用戶權(quán)限展示表</title>
</head>
<body>
    //給table體設(shè)置一個(gè)div,方便js調(diào)用
    <div id="table">
    <table align="center" border="1" width="500">
      <center><h3>用戶權(quán)限表</h3></center>
      <tr>
        <th>uid</th><th>用戶名</th><th>密碼</th><th>鎖定狀態(tài)</th><th>角色</th><th>操作</th>
      </tr>  
      {foreach $lists as $list}
        <tr align="center">
          <td>{$list.uid}</td>
          <td>{$list.username}</td>
          <td>{$list.password}</td>
          {if $list.is_lock==1}
            <td><a href="javascript:lock(0,{$list.uid});" rel="external nofollow" >鎖定</a></td>
            {else}
            <td><a href="javascript:lock(1,{$list.uid})" rel="external nofollow" ;>取消鎖定</a></td>  
          {/if}    
          {if $list.role==1}
              <td>管理員</td>
          {else}
              <td>編輯者</td>    
          {/if}
          <td><a href="javascript:del({$list.uid})" rel="external nofollow" >刪除</a></td>
        </tr>    
      {/foreach}  
    </table>
    </div>  
</body>
    <script type="text/javascript">
      function lock(lock,uid){
          //創(chuàng)建ajax對(duì)象
          var xhr=new XMLHttpRequest();
          //打開一個(gè)鏈接
          xhr.open('post','02.php');
          //設(shè)置頭信息
          xhr.setRequestHeader('content-type','application/x-www-form-urlencoded');
          //取值,多個(gè)參數(shù)用&分開
          var data="is_lock="+lock+"&uid="+uid;
          //發(fā)送ajax數(shù)據(jù)請(qǐng)求
          xhr.send(data);
          //設(shè)置回調(diào)、監(jiān)聽(tīng)函數(shù)
          xhr.onreadystatechange=function(){
            //如果ajax狀態(tài)碼響應(yīng)正常且網(wǎng)絡(luò)正常,獲取響應(yīng)文本
            if(xhr.readyState==4&&xhr.status==200){
              if(xhr.responseText){
                document.getElementById('table').innerHTML=xhr.responseText;
              }else{
                alert("切換狀態(tài)失?。?quot;);
              }
            }
          }
        }
    function del(uid){
      var del=window.confirm("您確定要?jiǎng)h除嗎?");
      if(del){
        //創(chuàng)建ajax對(duì)象
        var xhr=new XMLHttpRequest();
        //打開一個(gè)鏈接
        xhr.open('post','del.php');
        //設(shè)置header頭
        xhr.setRequestHeader('content-type','application/x-www-form-urlencoded');
        //data取值
        var data="uid="+uid;
        //發(fā)送ajax請(qǐng)求
        xhr.send(data);
        //設(shè)置監(jiān)聽(tīng)
        xhr.onreadystatechange=function(){
          //如果ajax狀態(tài)碼響應(yīng)正常且網(wǎng)絡(luò)正常,獲取響應(yīng)文本
          if(xhr.readyState==4&&xhr.status==200){
            if(xhr.responseText){
              //用ajax響應(yīng)內(nèi)容替換本模板中table標(biāo)簽的內(nèi)容
              document.getElementById('table').innerHTML=xhr.responseText;
            }else{
              alert("刪除失敗!");
            }
          }
        }
      }
    }    
    </script>
</html>

3. 02.php改變狀態(tài)無(wú)刷新:

<?php
  include './include/Mysql.class.php';
  include './libs/Smarty.class.php';
  $lock=$_POST['is_lock'];
  $uid=$_POST['uid'];
  $smarty=new Smarty;
  $db=new Mysql;
  $result=$db->update('users',"is_lock=$lock","uid=$uid");
  if($result){
    //修改成功重新遍歷數(shù)據(jù)庫(kù)并輸出smarty模板
    $lists=$db->getALL('users');
    $smarty->assign('lists',$lists);
    $smarty->display('list.html');
  }else{
    echo false;
  }
?>

4.del.php實(shí)現(xiàn)刪除無(wú)刷新

<?php
  include './include/Mysql.class.php';
  include './libs/Smarty.class.php';
  $db=new Mysql;
  $smarty=new Smarty;
  $uid=$_POST['uid'];
  $res=$db->delete('users',$uid);
  if($res>0){
    $lists=$db->getALL('users');
    $smarty->assign('lists',$lists);
    $smarty->display('list.html');
  }else{
    echo false;
  }
?>

什么是ajax

ajax是一種在無(wú)需重新加載整個(gè)網(wǎng)頁(yè)的情況下,能夠更新部分網(wǎng)頁(yè)的技術(shù),可以通過(guò)在后臺(tái)與服務(wù)器進(jìn)行少量數(shù)據(jù)交換,使網(wǎng)頁(yè)實(shí)現(xiàn)異步更新。

感謝各位的閱讀!關(guān)于“ajax如何實(shí)現(xiàn)改變狀態(tài)和刪除無(wú)刷新”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI