我正在尝试使用AJAX将值传递给PHP代码。
的Javascript
function countop() {
var href = window.location.href;
var href2 = href.split('/', 7);
xmlhttp.open('GET', '/count.php?val_for_count='+href2[6], true);
xmlhttp.send();
};
PHP
$x = $_GET['val_for_count'];
echo $x;
我没有打印$x
,我不知道为什么。
答案 0 :(得分:0)
您必须在使用之前创建XMLHttpRequest的新实例:
var xmlhttp = new XMLHttpRequest();
如果您想在文档中打印请求的结果,可以这样做:
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.body.innerHTML = xmlhttp.responseText;
}
};
答案 1 :(得分:0)
你有两个问题。
首先,永远不会声明xmlhttp
,因此您的代码会引发引用错误。
var xmlhttp = new XMLHttpRequest();
其次,你永远不会看HTTP响应!
xmlhttp.addEventListener("load", function (event) {
document.body.appendChild(
document.createTextNode(
this.responseText
)
);
});