Ajax请求工作正常,Javascript没有

时间:2017-06-18 03:42:10

标签: javascript php ajax

我正在寻找解决此问题的解决方案。

.abc

这是我的ajax代码,这是我的php文件,它是一个单独的文件。

function getProfile() {
if (str = "") {
document.getElementById("welcomebar").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("welcomebar").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("POST", "php/login.php?user="+document.getElementById("username").value, true);
xmlhttp.send();
}
}

ajax请求正在发送和接收。当我以自己的身份登录时,我希望它显示的信息正在正确显示。但是,当请求收到php文件中的java脚本代码时,它不起作用。 picture of the view source window.

0 个答案:

没有答案