我正在一个使用 AJAX 的网站上工作,但我遇到了死胡同。我的 javascript 有一个名为 validate 的函数,它从“名称”和“密码”字段中获取并将其发送到 php,等待响应。
function Validate() {
var xmlhttp;
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 (xmlhttp.readyState==4 && xmlhttp.status==200) {
if (xmlhttp.responseText.value == 'Invalid'){
$("#box").effect('shake',150);
document.getElementById("validationText").innerHTML = xmlhttp.responseText;
}
else if (xmlhttp.reponseText.value == 'Success!'){
console.log(xmlhttp.responseText.value)
document.getElementById("validationText").innerHTML = xmlhttp.responseText;
}
}
}
var name = document.getElementById("name").value;
var password = document.getElementById("password").value;
var arg = "JqueryPhp.php?name=" + name + "&password=" + password;
xmlhttp.open("GET", arg, true);
xmlhttp.send();
}
php 文件应返回“成功!” 或“无效”,视情况而定。
<?php
$con = mysql_connect("localhost","root","root");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("collegedatabase", $con);
$getUserName = $_GET["name"];
$getPassword = $_GET["password"];
$result = mysql_query("SELECT * FROM `admin`");
$Success = false;
/* if the user entered does not exist, run the function which shakes the screen and add a bit of text to say that the username is invalid */
while ($row = mysql_fetch_array($result)){
if ($row['userName'] == $getUserName && $row['password'] == $getPassword){
echo "Success!";
$Success = true;
break;
}
}
if($Success === false) {
echo ('Invalid');
}
?>
相反,它返回一个完整的 html 文件,字符串位于 body 标记内。我从萤火虫记录的响应如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
Invalid</body>
</html>