下面就分享一段相對完整的能夠在實際應用中派上用場的代碼,此代碼是ajax結合php代碼實現的。
一.ajax代碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <title>ajax實現浏覽量點擊增加</title> <script type="text/javascript"> var xmlhttp=false; function add(){ try{ xmlhttp= new XMLHttpRequest; } catch(e){ xmlhttp= new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open('GET','count.php?a=a',false); xmlhttp.onreadystatechange=func; xmlhttp.send(null); } function func(){ if(xmlhttp.readyState==4){ var msg=xmlhttp.responseText; var tt=document.getElementById("num"); tt.innerHTML=msg; } } </script> </head> <body> 當前頁面數據庫中訪問次數:<div id='num'></div> <input type="button" value="增加次數" > </body> </html>
二.php代碼:
<?php mysql_connect('localhost','root',''); mysql_selectdb('click'); $rs=mysql_query("UPDATE click SET num = num +1 WHERE name = '".$_GET['a']."'"); if(mysql_affected_rows()==1){ $rs=mysql_query("select * from click where name='".$_GET['a']."'"); $row=mysql_fetch_array($rs); echo $row['num']; } ?>
以上所述就是本文的全部內容了,希望大家能夠喜歡。