示範一個投票程序,透過它,投票結果在網頁不進行刷新的情況下被顯示,本篇將示範投票的效果。
實例解釋 - HTML 頁面
當使用者選擇上面的某個選項時,會執行名為 "getVote()" 的函式。此函數由 "onclick" 事件觸發。
poll.html 檔案程式碼如下:
<html><head><meta charset="utf-8"><title>菜鸟教程(runoob.com)</title><script>function getVote(int) { if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 执行代码 xmlhttp=new XMLHttpRequest(); } else { // IE6, IE5 执行代码 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("poll").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","poll_vote.php?vote="+int,true); xmlhttp.send();}</script></head><body><div id="poll"><h3>你喜欢 PHP 和 AJAX 吗?</h3><form>是:<input type="radio" name="vote" value="0" onclick="getVote(this.value)"><br>否:<input type="radio" name="vote" value="1" onclick="getVote(this.value)"></form></div></body></html>
getVote() 函數會執行下列步驟:
建立XMLHttpRequest 物件
#建立在伺服器回應就緒時執行的函數
向伺服器上的檔案傳送請求
請注意新增至URL 末端的參數(q)(包含下拉清單的內容)
PHP 檔案
上面這段透過JavaScript 呼叫的伺服器頁面是名為"poll_vote.php" 的PHP 檔案:
<?php $vote = htmlspecialchars($_REQUEST['vote']);// 获取文件中存储的数据$filename = "poll_result.txt";$content = file($filename);// 将数据分割到数组中$array = explode("||", $content[0]);$yes = $array[0];$no = $array[1];if ($vote == 0){ $yes = $yes + 1;}if ($vote == 1){ $no = $no + 1;}// 插入投票数据$insertvote = $yes."||".$no;$fp = fopen($filename,"w");fputs($fp,$insertvote);fclose($fp);?><h2>结果:</h2><table> <tr> <td>是:</td> <td> <span style="display: inline-block; background-color:green; width:<?php echo(100*round($yes/($no+$yes),2)); ?>px; height:20px;" ></span> <?php echo(100*round($yes/($no+$yes),2)); ?>% </td> </tr> <tr> <td>否:</td> <td> <span style="display: inline-block; background-color:red; width:<?php echo(100*round($no/($no+$yes),2)); ?>px; height:20px;"></span> <?php echo(100*round($no/($no+$yes),2)); ?>% </td> </tr></table>
當所選的值從JavaScript 傳送到PHP 檔案時,會發生:
取得"poll_result.txt" 檔案的內容
把檔案內容放入變量,並累積1
# #把結果寫入"poll_result.txt" 檔案
輸出圖形化的投票結果
文字檔案
文字檔案(poll_result.txt)中儲存來自投票程式的數據。
它儲存的資料如下所示:
第一個數字表示"Yes" 的投票數,第二個數字表示"No" 的投票數。
註解:請記得只允許您的 Web 伺服器來編輯該文字檔案。不要讓其他人獲得存取權,除了 Web 伺服器 (PHP)。
本篇示範了投票的效果,更多的學習資料清關注php中文網即可觀看。
######以上是關於 AJAX 投票的演示的詳細內容。更多資訊請關注PHP中文網其他相關文章!