基於PHP+jQuery+MySql實現紅藍(頂踩)投票代碼_php執行個體

來源:互聯網
上載者:User
先給大家展示:

查看示範 下載源碼

這是一個非常實用的投票執行個體,應用在雙方觀點對抗投票情境。使用者可以選擇支援代表自己觀點的一方進行投票,本文以紅藍雙方投票為例,通過前後台互動,直觀展示紅藍雙方投票數和所佔比例,應用非常廣泛。

本文是一篇綜合知識應用類文章,需要您具備PHP、jQuery、MySQL以及html和css方面的基本知識。

HTML

我們需要在頁面中展示紅藍雙方的觀點,以及對應的投票數和比例,以及用於投票互動的手型圖片,本例以#red和#blue分別表示紅藍雙方。.redhand和.bluehand用來做手型投票按鈕,.redbar和.bluebar展示紅藍雙方比例調,#red_num和#blue_num展示雙方投票數。

  您對Helloweba提供的文章的看法?  非常實用完全看不懂            

CSS

使用CSS將頁面美化,載入背景圖片,確定相對位置等等,你可以直接複製以下代碼,在自己的項目中稍作修改即可。

.vote{width:288px; height:220px; margin:60px auto 20px auto;position:relative} .votetitle{width:100%;height:62px; background:url(icon.png) no-repeat 0 30px; font-size:15px} .red{position:absolute; left:0; top:90px; height:80px;} .blue{position:absolute; right:0; top:90px; height:80px;} .votetxt{line-height:24px} .votetxt span{float:right} .redhand{position:absolute; left:0;width:36px; height:36px; background:url(icon.png) no-repeat -1px -38px;cursor:pointer} .bluehand{position:absolute; right:0;width:36px; height:36px; background:url(icon.png) no-repeat -41px -38px;cursor:pointer} .grayhand{width:34px; height:34px; background:url(icon.png) no-repeat -83px -38px;cursor:pointer} .redbar{position:absolute; left:42px; margin-top:8px;} .bluebar{position:absolute; right:42px; margin-top:8px; } .redbar span{display:block; height:6px; background:red; width:100%;border-radius:4px;} .bluebar span{display:block; height:6px; background:#09f; width:100%;border-radius:4px; position:absolute; right:0} .redbar p{line-height:20px; color:red;} .bluebar p{line-height:20px; color:#09f; text-align:right; margin-top:6px} 

jQuery

當點擊手型按鈕時,利用jQuery的$.getJSON()向後台php發送Ajax請求,如果請求成功,將會得到後台返回的json資料,jQuery再將json資料進行處理。以下函數:getdata(url,sid),傳遞了兩個參數,url是請求的後台php地址,sid表示當前投票主題ID,我們在該函數中,返回的json資料有紅藍雙方的投票數,以及雙方比例,根據比例計算比例條的寬度,非同步互動展示投票效果。

function getdata(url,sid){  $.getJSON(url,{id:sid},function(data){  if(data.success==1){   var w = 208; //定義比例條的總寬度   //紅方投票數   $("#red_num").html(data.red);   $("#red").css("width",data.red_percent*100+"%");   var red_bar_w = w*data.red_percent-10;   //紅方比例條寬度   $("#red_bar").css("width",red_bar_w);   //藍方投票數   $("#blue_num").html(data.blue);   $("#blue").css("width",data.blue_percent*100+"%");   var blue_bar_w = w*data.blue_percent;   //藍方比例條寬度   $("#blue_bar").css("width",blue_bar_w);  }else{   alert(data.msg);  }  }); } 

當頁面初次載入時,即調用getdata(),然後點擊給紅方投票或給藍方投票同樣調用getdata(),只是傳遞的參數不一樣。注意本例中的參數sid我們設定為1,是根據資料表中的id設定的,開發人員可以根據實際項目讀取準確的id。

 $(function(){  //擷取初始資料  getdata("vote.php",1);  //紅方投票  $(".redhand").click(function(){  getdata("vote.php?action=red",1);  });  //藍方投票  $(".bluehand").click(function(){  getdata("vote.php?action=blue",1);  }); }); 

PHP

前端請求了背景vote.php,vote.php將根據接收的參數,串連資料庫,調用相關函數。

include_once("connect.php"); $action = $_GET['action']; $id = intval($_GET['id']); $ip = get_client_ip();//擷取ip if($action=='red'){//紅方投票 vote(1,$id,$ip); }elseif($action=='blue'){//藍方投票 vote(0,$id,$ip); }else{//預設返回初始資料 echo jsons($id); }

函數vote($type,$id,$ip)用來做出投票動作,$type表示投票方,$id表示投票主題的id,$ip表示使用者當前ip。首先根據使用者當前IP,查詢投票記錄表votes_ip中是否已經存在當前ip記錄,如果存在,則說明使用者已投票,否則更新紅方或藍方的投票數,並將目前使用者投票記錄寫入到votes_ip表中以防重複投票。

function vote($type,$id,$ip){  $ip_sql=mysql_query("select ip from votes_ip where vid='$id' and ip='$ip'");  $count=mysql_num_rows($ip_sql);  if($count==0){//還沒有投票  if($type==1){//紅方   $sql = "update votes set likes=likes+1 where id=".$id;  }else{//藍方   $sql = "update votes set unlikes=unlikes+1 where id=".$id;  }  mysql_query($sql);    $sql_in = "insert into votes_ip (vid,ip) values ('$id','$ip')";  mysql_query($sql_in);  if(mysql_insert_id()>0){   echo jsons($id);  }else{   $arr['success'] = 0;   $arr['msg'] = '操作失敗,請重試';   echo json_encode($arr);  }  }else{  $arr['success'] = 0;  $arr['msg'] = '已經投票過了';  echo json_encode($arr);  } } 

函數jsons($id)通過查詢當前id的投票數,計算比例並返回json資料格式供前端調用。

function jsons($id){  $query = mysql_query("select * from votes where id=".$id);  $row = mysql_fetch_array($query);  $red = $row['likes'];  $blue = $row['unlikes'];  $arr['success']=1;  $arr['red'] = $red;  $arr['blue'] = $blue;  $red_percent = round($red/($red+$blue),3);  $arr['red_percent'] = $red_percent;  $arr['blue_percent'] = 1-$red_percent;   return json_encode($arr); } 

文中還涉及到擷取使用者真實IP的函數:get_client_ip(),點擊這裡可以看相關代碼:http://www.php.net/article/58610.htm

MySQL

最後,貼上Mysql資料表,votes表用來記錄紅藍雙方的投票總數,votes_ip表則用來存放使用者的投票IP記錄。

CREATE TABLE IF NOT EXISTS `votes` (  `id` int(10) NOT NULL AUTO_INCREMENT,  `likes` int(10) NOT NULL DEFAULT '0',  `unlikes` int(10) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO `votes` (`id`, `likes`, `unlikes`) VALUES (1, 30, 10); CREATE TABLE IF NOT EXISTS `votes_ip` (  `id` int(10) NOT NULL,  `vid` int(10) NOT NULL,  `ip` varchar(40) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 

PHP+MySql+jQuery實現頂和踩投票功能

本文結合執行個體,講解使用PHP+MySql+jQuery實現的“頂”和“踩”投票功能,通過記錄使用者IP,判斷使用者的投票行為是否有效,該執行個體也可以擴充到投票系統中。

首先我們在頁面上放置“頂”和“踩”的按鈕,即#dig_up和#dig_down,按鈕上分別記錄了投票的票數以及所佔的百分比。

      

很好,很強大!

太差勁了!

$(function(){ //當滑鼠懸浮和離開兩個按鈕時,切換按鈕背景樣式 $("#dig_up").hover(function(){ $(this).addClass("digup_on"); },function(){ $(this).removeClass("digup_on"); }); $("#dig_down").hover(function(){ $(this).addClass("digdown_on"); },function(){ $(this).removeClass("digdown_on"); }); //初始化資料 getdata("ajax.php",1); //單擊“頂”時 $("#dig_up").click(function(){ getdata("ajax.php?action=like",1); }); //單擊“踩”時 $("#dig_down").click(function(){ getdata("ajax.php?action=unlike",1); }); });

以上內容實現了基於PHP+jQuery+MySql實現紅藍(頂踩)投票代碼,希望大家喜歡。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.