這篇文章將為大家詳細(xì)講解有關(guān)怎么在php中利用jQuery實(shí)現(xiàn)一個(gè)投票功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)為客戶提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站制作、程序、域名、空間一條龍服務(wù),提供基于WEB的系統(tǒng)開發(fā). 服務(wù)項(xiàng)目涵蓋了網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、移動(dòng)網(wǎng)站建設(shè)等網(wǎng)站方面業(yè)務(wù)。數(shù)據(jù)表
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;
HTML
在頁(yè)面中,有兩個(gè)分別表示“頂”和“踩”的按鈕,即#dig_up和#dig_down,按鈕上記錄了投票的票數(shù)以及分別所占的百分比,非常直觀的對(duì)比投票結(jié)果。
很好,很強(qiáng)大!
太差勁了!
CSS
我們必須使用CSS來美化頁(yè)面,我們使用一張圖diggs.png來定位不同的按鈕背景,通過設(shè)置position來定位各元素之間的位置關(guān)系。
.digg{width:420px; height:120px; margin:80px auto 20px auto; position:relative} #dig_up,#dig_down{width:200px; height:48px; margin:10px; position:relative; border:1px solid #d3d3d3; padding-left:42px; cursor:pointer} .digup{background:url(diggs.png) no-repeat 4px 2px;} .digup_on{background:url(diggs.png) no-repeat 4px -49px;} .digdown{background:url(diggs.png) no-repeat 4px -102px;} .digdown_on{background:url(diggs.png) no-repeat 4px -154px;} #num_up,#num_down{position:absolute; right:6px; top:18px; font-size:20px;} #dig_up p{height:24px; line-height:24px; color:#360} #dig_down p{height:24px; line-height:24px; color:#f30} .bar{width:100px; height:12px; line-height:12px; border:1px solid #f0f0f0; position:relative; text-align:center} .bar span{display:block; height:12px; } .bar i{position:absolute; top:0; left:104px;} #bar_up span{background:#360} #bar_down span{background:#f60} #msg{position:absolute; right:20px; top:40px; font-size:18px; color:#f00}
jQuery
本示例還依賴于jQuery,因此一定不能忘了在頁(yè)面中先載入jquery庫(kù)文件。
首先,jQuery要處理的是鼠標(biāo)分別滑向兩個(gè)投票按鈕時(shí)變換的背景圖片,通過addClass()和removeClass()來實(shí)現(xiàn)。
$(function(){ //鼠標(biāo)滑向和離開投票按鈕時(shí),變換背景樣式 $("#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"); }); //初始化數(shù)據(jù) getdata("do.php",1); //單擊“頂”時(shí) $("#dig_up").click(function(){ getdata("do.php?action=like",1); }); //單擊“踩”時(shí) $("#dig_down").click(function(){ getdata("do.php?action=unlike",1); }); });
然后,我們初始化數(shù)據(jù),就是頁(yè)面加載后,要顯示初始的已經(jīng)投票的結(jié)果,包括各投票數(shù)和所占百分比。我們將獲取數(shù)據(jù)的操作寫在一個(gè)自定義函數(shù)getdata()中,通過傳遞不同的請(qǐng)求地址和id參數(shù)來完成數(shù)據(jù)的載入。函數(shù)getdata()中,向URL發(fā)送一個(gè)ajax請(qǐng)求,根據(jù)后臺(tái)處理的返回結(jié)果,如果投票成功則更改頁(yè)面中相應(yīng)的元素內(nèi)容,包括投票數(shù)和所占百分比。
function getdata(url,sid){ $.getJSON(url,{id:sid},function(data){ if(data.success==1){//投票成功 $("#num_up").html(data.like); //通過控制寬度來顯示百分比進(jìn)度條效果 $("#bar_up span").css("width",data.like_percent); $("#bar_up i").html(data.like_percent); $("#num_down").html(data.unlike); $("#bar_down span").css("width",data.unlike_percent); $("#bar_down i").html(data.unlike_percent); }else{//投票失敗 $("#msg").html(data.msg).show().css({'opacity':1,'top':'40px'}) .animate({top:'-50px',opacity:0}, "slow"); } }); }
PHP
數(shù)據(jù)的獲取都是通過do.php來完成,do.php根據(jù)前端頁(yè)面?zhèn)鬟f的參數(shù),連接數(shù)據(jù)庫(kù),根據(jù)條件判斷分別進(jìn)入“頂”、“踩”和初始數(shù)據(jù)處理模塊,以下是do.php模塊代碼結(jié)構(gòu):
include_once("connect.php");//連接數(shù)據(jù)庫(kù) $action = $_GET['action']; $id = 1; $ip = get_client_ip();//獲取ip if($action=='like'){//頂 likes(1,$id,$ip); }elseif($action=='unlike'){//踩 likes(0,$id,$ip); }else{ echo jsons($id); }
函數(shù)likes()用來處理“頂”和“踩”投票模塊,首先是判斷用戶IP是否已經(jīng)投票過了,如果已經(jīng)投票則直接返回相應(yīng)提示,如果用戶IP沒有投票記錄則更新votes表,將對(duì)應(yīng)的投票數(shù)加1,然后向votes_ip表中插入該用戶的IP記錄,如果操作成功,則調(diào)用jsons()輸出投票后的投票數(shù)和所占百分比等數(shù)據(jù),否則輸入操作失敗的提示信息。
function likes($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'] = '操作失敗,請(qǐng)重試'; echo json_encode($arr); } }else{ $msg = $type==1?'您已經(jīng)頂過了':'您已經(jīng)踩過了'; $arr['success'] = 0; $arr['msg'] = $msg; echo json_encode($arr); } }
函數(shù)jsons()用來讀取votes表中相應(yīng)id的投票數(shù),并計(jì)算百分比,最后將這些信息以json格式輸出,供前端頁(yè)面使用。
function jsons($id){ $query = mysql_query("select * from votes where id=".$id); $row = mysql_fetch_array($query); $like = $row['likes']; $unlike = $row['unlikes']; $arr['success']=1; $arr['like'] = $like; $arr['unlike'] = $unlike; $like_percent = round($like/($like+$unlike),3)*100; $arr['like_percent'] = $like_percent.'%'; $arr['unlike_percent'] = (100-$like_percent).'%'; return json_encode($arr); }
關(guān)于怎么在php中利用jQuery實(shí)現(xiàn)一個(gè)投票功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。