以下示例将演示一次民意调查,其中显示结果而无需重新加载。
当用户选择上述选项时,将执行名为"getVote()" 的函数。该函数由 "onclick" 事件触发:
<html>
<head>
<script>
function getVote(int) {
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("poll").innerHTML=this.responseText;
}
}
xmlhttp.open("GET","poll_vote.html?vote="+int,true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="poll">
<h3>Do you like PHP and AJAX so far?</h3>
<form>
Yes: <input type="radio" name="vote" value="0" onclick="getVote(this.value)"><br>
No: <input type="radio" name="vote" value="1" onclick="getVote(this.value)">
</form>
</div>
</body>
</html>
getVote() 函数执行以下操作:
上面的 JavaScript 调用的服务器上的页面是一个名为 "poll_vote.html" 的 PHP 文件:
<?php
$vote = $_REQUEST['vote'];
//get content of textfile
$filename = "poll_result.txt";
$content = file($filename);
//put content in array
$array = explode("||", $content[0]);
$yes = $array[0];
$no = $array[1];
if ($vote == 0) {
$yes = $yes + 1;
}
if ($vote == 1) {
$no = $no + 1;
}
//insert votes to txt file
$insertvote = $yes."||".$no;
$fp = fopen($filename,"w");
fputs($fp,$insertvote);
fclose($fp);
?>
<h2>Result:</h2>
<table>
<tr>
<td>Yes:</td>
<td><img src="poll.gif"
width='<?php echo(100*round($yes/($no+$yes),2)); ?>'
height='20'>
<?php echo(100*round($yes/($no+$yes),2)); ?>%
</td>
</tr>
<tr>
<td>No:</td>
<td><img src="poll.gif"
width='<?php echo(100*round($no/($no+$yes),2)); ?>'
height='20'>
<?php echo(100*round($no/($no+$yes),2)); ?>%
</td>
</tr>
</table>
该值是从 JavaScript 发送的,并且会发生以下情况:
文本文件 (poll_result.txt) 是我们存储民意调查数据的位置。
它的存储方式如下:
0||0
第一个数字代表"Yes" 票,第二个数字代表"No" 票。
笔记:请记住允许您的网络服务器编辑文本文件。做不是为每个人提供访问权限,仅提供 Web 服务器 (PHP)。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!