1. 程式人生 > 其它 >php頁面按鈕效果程式碼_jQuery+PHP打造滑動開關效果

php頁面按鈕效果程式碼_jQuery+PHP打造滑動開關效果

https://blog.csdn.net/weixin_39662462/article/details/115105302

但是原始碼有點問題,以下做了修正

本文介紹了使用jQuery、PHP和MySQL實現類似360安全衛士防火牆開啟關閉的開關,可以將此功能應用在產品功能的開啟和關閉功能上。

準備工作為了更好的演示本例,我們需要一個數據表,記錄需要的功能說明及開啟狀態,表結構如下:

複製程式碼程式碼如下:
CREATE TABLE `pro` ( 
  `id` int(11) NOT NULL auto_increment, 
  `title` varchar(50) NOT NULL, 
  `description` varchar(200) NOT NULL, 
  `status` tinyint(1) NOT NULL default '0', 
  PRIMARY KEY  (`id`) 
) DEFAULT CHARSET=utf8;

  

你可以向表中pro插入幾條資料。

INSERT INTO `pro1111` (`id`, `title`, `description`, `status`) VALUES ('9', 'tttt999', 'sggshtrht', '1');
INSERT INTO `pro1111` (`id`, `title`, `description`, `status`) VALUES ('10', 'tttt10', 'sggshtrht', '2');
INSERT INTO `pro1111` (`id`, `title`, `description`, `status`) VALUES ('11', 'tttt11', 'sggshtrht', '1');
INSERT INTO `pro1111` (`id`, `title`, `description`, `status`) VALUES ('12', 'tttt12', 'sggshtrht', '0');

  

index.php

我們要在頁面顯示相關功能列表,使用PHP讀取資料表,並以列表的形式展示。

複製程式碼程式碼如下:
<!-- index.php -->
<html>

<head>
  <link rel="stylesheet" type="text/css" href="./css/index.css">
</head>

</html>

<?php
$servername = "localhost";
$username = "root";
$password = "root";
$dbname = "test";

// 建立連線
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
  die("連線失敗: " . $conn->connect_error);
}

$sql = "SELECT * FROM `pro1111`";
$result = $conn->query($sql);

// 輸出資料
while ($row = $result->fetch_assoc()) {
?>
  <div class="list">
    <div class="fun_title">
      <span rel="<?php echo $row['id']; ?>" <?php
                                            if ($row['status'] == 1) {
                                              echo "class=\"ad_on\" title=\"點選關閉\"";
                                            } else {
                                              echo "class=\"ad_off\" title=\"點選開啟\"";
                                            }
                                            ?>></span>

      <h3><?php echo $row['title']; ?></h3>
      </>
      <p><?php echo $row['description']; ?></p>
    </div>
  </div>
<?php } ?>

  

連線資料庫,然後迴圈輸出產品功能列表。

./css/index.css

為了渲染一個比較好的頁面外觀,我們使用CSS來美化頁面,使得頁面更符合人性化。使用CSS,我們只需用一張圖片來標識開關按鈕。

複製程式碼程式碼如下:
.list{padding:6px 4px; border-bottom:1px dotted #d3d3d3; position:relative}   
.fun_title{height:28px; line-height:28px}   
/* .fun_title span{width:82px; height:25px; background:url(switch.gif) no-repeat;     */
  .fun_title span{width:82px; height:25px; background:#f00 url(../image/switch.gif) no-repeat;
  cursor:pointer; position:absolute; right:6px; top:16px}   
.fun_title span.ad_on{background-position:0 -2px}   
.fun_title span.ad_off{background-position:0 -38px}   
.fun_title h3{font-size:14px; font-family:'microsoft yahei';}   
.list p{line-height:20px}   
.list p span{color:#f60}   
.cur_select{background:#ffc}   

  

CSS程式碼,我不想詳述,提示下我們使用了一張圖片,然後通過background-position來定點陣圖片的位置,這是大多數網站使用的方法,好處咱就不說了。

jQuery

我們通過單擊開關按鈕,及時請求後臺,改變對應的功能開關狀態。這個過程是一個典型的Ajax應用。通過點選開關按鈕,前端向後臺PHP傳送post請求,後臺接收請求,並查詢資料庫,並將結果返回給前端,前端jQuery根據後臺返回的結果,改變按鈕狀態。

複製程式碼程式碼如下:
$(function(){
//滑鼠滑向換色
$(".list").hover(function(){
$(this).addClass("cur_select");
},function(){
$(this).removeClass("cur_select");
});
//關閉
$(".ad_on").live("click",function(){
var add_on = $(this);
var status_id = $(this).attr("rel");
$.post("action.php",{status:status_id,type:1},function(data){
if(data==1){
add_on.removeClass("ad_on").addClass("ad_off").attr("title","點選開啟");
}else{
alert(data);
}
});
});
//開啟
$(".ad_off").live("click",function(){
var add_off = $(this);
var status_id = $(this).attr("rel");
$.post("action.php",{status:status_id,type:2},function(data){alert(data);
if(data==1){
add_off.removeClass("ad_off").addClass("ad_on").attr("title","點選關閉");
}else{
alert(data);
}
});
});
});

說明,程式碼中,首先實現了滑鼠滑向功能列表換色的功能(詳見demo),然後就是單擊開關按鈕,向後臺action.php傳送Ajax請求,提交的引數是對應功能的id和type,用於後臺區分請求的是哪個功能和請求的型別(開啟和關閉)。其實,大家稍微留神,可以看出,根據Ajax請求成功返回結果後,開關按鈕動態改變樣式,實現改變開關狀態的功能。

action.php

後臺action.php接收到前端的請求,根據引數執行SQL語句,更新對應功能的狀態,成功後將結果返回給前端,請看程式碼:

複製程式碼程式碼如下:
require_once('connect.php');
$id = $_POST['status'];
$type = $_POST['type'];
if($type==1){ //關閉
$sql = "update pro set status=0 where id=".$id;
}else{ //開啟
$sql = "update pro set status=1 where id=".$id;
}
$rs = mysql_query($sql);
if($rs){
echo '1';
}else{
echo '伺服器忙,請稍後再試!';
}

結束語通過本文您可以熟練掌握ajax在WEB開發中的應用,並能快速的應用到您的專案中。將一如既往的為廣大開發者提供更具實用性的應用,致力於WEB前端技術的應用。

您可能感興趣的文章: