您好,登錄后才能下訂單哦!
這篇文章主要講解了“php+jQuery+Ajax如何實(shí)現(xiàn)點(diǎn)贊效果附源碼”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“php+jQuery+Ajax如何實(shí)現(xiàn)點(diǎn)贊效果附源碼”吧!
本文實(shí)例講述了php+jQuery+Ajax實(shí)現(xiàn)點(diǎn)贊效果的方法。分享給大家供大家參考,具體如下:
數(shù)據(jù)庫(kù)設(shè)計(jì)
先準(zhǔn)備兩張表,pic表保存的是圖片信息,包括圖片對(duì)應(yīng)的名稱(chēng)、路徑以及圖片“贊”總數(shù),pic_ip則記錄用戶點(diǎn)擊贊后的IP數(shù)據(jù)。
CREATE TABLE IF NOT EXISTS `pic` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pic_name` varchar(60) NOT NULL, `pic_url` varchar(60) NOT NULL, `love` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `pic_ip` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pic_id` int(11) NOT NULL, `ip` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8
index.php
在index.php中,我們通過(guò)PHP讀取pic表中的圖片信息并展示出來(lái),結(jié)合CSS,提升頁(yè)面展示效果。
<?php include_once("connect.php"); $sql = mysqli_query($link,"select * from pic"); while($row=mysqli_fetch_array($sql)){ $pic_id = $row['id']; $pic_name = $row['pic_name']; $pic_url = $row['pic_url']; $love = $row['love']; ?> <li><img src="./images/<?php echo $pic_url;?>" alt="<?php echo $pic_name;?>"><p><a href="#" title="贊" class="img_on" rel="<?php echo $pic_id;?>"><?php echo $love;?></a></p></li> <?php }?>
CSS中,我們將定義鼠標(biāo)滑向和離開(kāi)紅心按鈕的動(dòng)態(tài)效果,并定位按鈕的位置。
.list{width:760px; margin:20px auto} .list li{float:left; width:360px; height:280px; margin:10px; position:relative} .list li p{position:absolute; top:0; left:0; width:360px; height:24px; line-height:24px; background:#000; opacity:.8;filter:alpha(opacity=80);} .list li p a{padding-left:30px; height:24px; background:url(images/heart.png) no-repeat 4px -1px;color:#fff; font-weight:bold; font-size:14px} .list li p a:hover{background-position:4px -25px;text-decoration:none}
jQuery代碼
當(dāng)用戶點(diǎn)擊自己喜歡的圖片上的紅心按鈕時(shí),向后臺(tái)love.php發(fā)送ajax請(qǐng)求,請(qǐng)求響應(yīng)成功后,更新原有的數(shù)值
$(function(){ $("p a").click(function(){ var love = $(this); var id = love.attr("rel"); //對(duì)應(yīng)id love.fadeOut(300); //漸隱效果 $.ajax({ type:"POST", url:"love.php", data:"id="+id, cache:false, //不緩存此頁(yè)面 success:function(data){ love.html(data); love.fadeIn(300); //漸顯效果 } }); return false; }); });
love.php
后臺(tái)love.php接收前端的ajax請(qǐng)求,根據(jù)提交的圖片id值,查找IP表中是否已有該用戶ip的點(diǎn)擊記錄,如果有則告訴用戶已“贊過(guò)了”,反之,則進(jìn)行一下操作:
1、更新圖片表中對(duì)應(yīng)的圖片love字段值,將數(shù)值加1。
2、將該用戶IP信息寫(xiě)入到pic_ip表中,用以防止用戶重復(fù)點(diǎn)擊。
3、獲取更新后的贊值,即贊該圖片的用戶總數(shù),并將該總數(shù)輸出給前端頁(yè)面。
include_once("connect.php"); $ip = get_client_ip(); $id = $_POST['id']; if(!isset($id) || empty($id)) exit; $ip_sql=mysqli_query($link,"select ip from pic_ip where pic_id='$id' and ip='$ip'"); $count=mysqli_num_rows($ip_sql); if($count==0){ $sql = "update pic set love=love+1 where id='$id'"; mysqli_query($link,$sql); $sql_in = "insert into pic_ip (pic_id,ip) values ('$id','$ip')"; mysqli_query($link,$sql_in); $result = mysqli_query($link,"select love from pic where id='$id'"); $row = mysqli_fetch_array($result); $love = $row['love']; echo $love; }else{ echo "贊過(guò)了.."; }
我上傳的附件中 數(shù)據(jù)庫(kù)SQL 你可以直接建立test 數(shù)據(jù)庫(kù)UTF8編碼的,然后把SQL文件導(dǎo)入進(jìn)去。修改一下connect.php中數(shù)據(jù)庫(kù)的連接信息即可。
源文件點(diǎn)擊此處本站下載。
總結(jié):
其實(shí)就是發(fā)了一個(gè)ajax請(qǐng)求,比如你要贊一個(gè)商品。商品表肯定有一個(gè)計(jì)數(shù)的字段。你發(fā)一個(gè)請(qǐng)求過(guò)去把這個(gè)字段+1
該成功了就返回一個(gè)現(xiàn)在的數(shù)。然后把頁(yè)面改一下就成了
function Zan( goodsId, a ){ $.post( "/goods/zan/"+goodsId, null,function( ret ){ if( ret.status == 'ok' ) $(a).html( ret.zannum); else alert( ret.data ); },'json' ); }
希望本文所述對(duì)大家php程序設(shè)計(jì)有所幫助。
備注:億速云改寫(xiě)了mysqli函數(shù)處理數(shù)據(jù)庫(kù)操作,以方便兼容PHP7開(kāi)發(fā)環(huán)境
感謝各位的閱讀,以上就是“php+jQuery+Ajax如何實(shí)現(xiàn)點(diǎn)贊效果附源碼”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)php+jQuery+Ajax如何實(shí)現(xiàn)點(diǎn)贊效果附源碼這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(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)容。