亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

AJAX 投票

AJAX 投票

在下面的實(shí)例中,我們將示範(fàn)一個(gè)投票程序,透過(guò)它,投票結(jié)果在網(wǎng)頁(yè)不進(jìn)行刷新的情況下被顯示。

你喜歡PHP 和AJAX 嗎?

是:??
否:?

實(shí)例解釋- HTML 頁(yè)面

當(dāng)使用者選擇上面的某個(gè)選項(xiàng)時(shí),會(huì)執(zhí)行名為"getVote()" 的函數(shù)。此函數(shù)由 "onclick" 事件觸發(fā)。

poll.html?檔案程式碼如下:

<html>
<head>
<meta charset="utf-8">
<title>php中文網(wǎng)(php.cn)</title>
<script>
function getVote(int) {
  if (window.XMLHttpRequest) {
    // IE7+, Firefox, Chrome, Opera, Safari 執(zhí)行代碼
    xmlhttp=new XMLHttpRequest();
  } else {
    // IE6, IE5 執(zhí)行代碼
    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() 函數(shù)會(huì)執(zhí)行下列步驟:

1) 建立XMLHttpRequest 物件

2) 建立在伺服器回應(yīng)就緒時(shí)執(zhí)行的函數(shù)

3) 向伺服器上的檔案?jìng)魉驼?qǐng)求

#4) 請(qǐng)注意新增至URL 末端的參數(shù)(q)(包含下拉清單的內(nèi)容)

PHP 檔案

上面這段透過(guò)JavaScript 呼叫的伺服器頁(yè)面是名為"poll_vote.php" 的PHP 檔案:

<?php
$vote = htmlspecialchars($_REQUEST['vote']);
// 獲取文件中存儲(chǔ)的數(shù)據(jù)
$filename = "poll_result.txt";
$content = file($filename);
// 將數(shù)據(jù)分割到數(shù)組中
$array = explode("||", $content[0]);
$yes = $array[0];
$no = $array[1];
if ($vote == 0)
{
  $yes = $yes + 1;
}
if ($vote == 1)
{
  $no = $no + 1;
}
// 插入投票數(shù)據(jù)
$insertvote = $yes."||".$no;
$fp = fopen($filename,"w");
fputs($fp,$insertvote);
fclose($fp);
?>
<h2>結(jié)果:</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>

當(dāng)所選的值從JavaScript 傳送到PHP 檔案時(shí),將會(huì)發(fā)生:

1) 取得"poll_result.txt" 檔案的內(nèi)容

2) 把檔案內(nèi)容放入變量,並且將被選變數(shù)累積1

3) 把結(jié)果寫(xiě)入"poll_result.txt" 檔案

4) 輸出圖形化的投票結(jié)果

文字檔案

文字檔案(poll_result.txt)中儲(chǔ)存來(lái)自投票程式的資料。

它儲(chǔ)存的資料如下所示:

3||4

#第一個(gè)數(shù)字表示「Yes」的投票數(shù),第二個(gè)數(shù)字表示"No" 的投票數(shù)。

註解:請(qǐng)記得只允許您的 Web 伺服器來(lái)編輯該文字檔案。不要讓其他人獲得存取權(quán),除了 Web 伺服器 (PHP)。


繼續(xù)學(xué)習(xí)
||
<html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <script> function getVote(int) { if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 執(zhí)行代碼 xmlhttp=new XMLHttpRequest(); } else { // IE6, IE5 執(zhí)行代碼 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>
提交重置程式碼