https://www.w3schools.com/php/php_ajax_poll.asp
我无法运行上面链接中发现的Ajax调查。在站点上有效,但在本地主机上不起作用。我在哪里犯错了?
<html>
<head>
<script>
function getVote(int) {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("poll").innerHTML=this.responseText;
}
}
xmlhttp.open("GET","poll_vote.php?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>
答案 0 :(得分:0)
他们使用的托管网址是自托管的,您只需在请求中添加完整网址即可。
xmlhttp.open("GET","https://www.w3schools.com/php/poll_vote.php?vote="+int,true);
答案 1 :(得分:0)
@丹尼尔·史密斯 我试过了,但是问题与PHP文件无关。单击单选按钮不起作用。