中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ajax如何實現改變狀態和刪除無刷新

發布時間:2021-05-18 12:47:14 來源:億速云 閱讀:153 作者:小新 欄目:web開發

這篇文章給大家分享的是有關ajax如何實現改變狀態和刪除無刷新的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1. 01.php為主程序,調用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模板:內容結合JS ajax使用:

<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8>
  <title>用戶權限展示表</title>
</head>
<body>
    //給table體設置一個div,方便js調用
    <div id="table">
    <table align="center" border="1" width="500">
      <center><h3>用戶權限表</h3></center>
      <tr>
        <th>uid</th><th>用戶名</th><th>密碼</th><th>鎖定狀態</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){
          //創建ajax對象
          var xhr=new XMLHttpRequest();
          //打開一個鏈接
          xhr.open('post','02.php');
          //設置頭信息
          xhr.setRequestHeader('content-type','application/x-www-form-urlencoded');
          //取值,多個參數用&分開
          var data="is_lock="+lock+"&uid="+uid;
          //發送ajax數據請求
          xhr.send(data);
          //設置回調、監聽函數
          xhr.onreadystatechange=function(){
            //如果ajax狀態碼響應正常且網絡正常,獲取響應文本
            if(xhr.readyState==4&&xhr.status==200){
              if(xhr.responseText){
                document.getElementById('table').innerHTML=xhr.responseText;
              }else{
                alert("切換狀態失敗!");
              }
            }
          }
        }
    function del(uid){
      var del=window.confirm("您確定要刪除嗎?");
      if(del){
        //創建ajax對象
        var xhr=new XMLHttpRequest();
        //打開一個鏈接
        xhr.open('post','del.php');
        //設置header頭
        xhr.setRequestHeader('content-type','application/x-www-form-urlencoded');
        //data取值
        var data="uid="+uid;
        //發送ajax請求
        xhr.send(data);
        //設置監聽
        xhr.onreadystatechange=function(){
          //如果ajax狀態碼響應正常且網絡正常,獲取響應文本
          if(xhr.readyState==4&&xhr.status==200){
            if(xhr.responseText){
              //用ajax響應內容替換本模板中table標簽的內容
              document.getElementById('table').innerHTML=xhr.responseText;
            }else{
              alert("刪除失敗!");
            }
          }
        }
      }
    }    
    </script>
</html>

3. 02.php改變狀態無刷新:

<?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){
    //修改成功重新遍歷數據庫并輸出smarty模板
    $lists=$db->getALL('users');
    $smarty->assign('lists',$lists);
    $smarty->display('list.html');
  }else{
    echo false;
  }
?>

4.del.php實現刪除無刷新

<?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是一種在無需重新加載整個網頁的情況下,能夠更新部分網頁的技術,可以通過在后臺與服務器進行少量數據交換,使網頁實現異步更新。

感謝各位的閱讀!關于“ajax如何實現改變狀態和刪除無刷新”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苍山县| 阿拉尔市| 原阳县| 辽宁省| 尉犁县| 襄垣县| 五寨县| 连云港市| 邵武市| 日土县| 郯城县| 江陵县| 文成县| 敦煌市| 上饶县| 德格县| 容城县| 翁牛特旗| 青神县| 浦东新区| 竹山县| 留坝县| 甘德县| 西乌| 迁安市| 滨海县| 信丰县| 佳木斯市| 锡林浩特市| 乌拉特后旗| 山西省| 平安县| 来凤县| 积石山| 白沙| 麻栗坡县| 三江| 湛江市| 修武县| 扶风县| 航空|