我有與jQuery AJAX功能的問題:jQuery的Ajax的 - 錯誤響應
var arrayIdEq = JSON.stringify(iditem);
$.ajax({
type: "POST",
url: "index.php",
dataType : 'text',
contentType: 'application/json; charset=utf-8',
data: {
arrayIdEq : arrayIdEq
},
success: function(answer) {
alert(answer);
},
complete: function() {
},
error: function(jqXHR, errorText, errorThrown) {
alert(jqXHR+" - "+errorText+" - "+errorThrown);
}
});
「arrayIdEq」 包含從0到7編號,或串 「EMPTY」。 PHP代碼:
elseif(isset($_POST['arrayIdEq'])){
$answer = "my_answer";
return $answer;
請求後,當成功的響應來,警報顯示出來......但這裏的問題。警報包含...我的主頁上的HTML代碼,而不是「$ answer」值!
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> Medivia</title>
</head>
<body>
<h1>Medivia</h1>
<form action="index.php" method="POST">
<label>E-mail:<br><input type="text" name="mail" required></label>
<br>
<label>Hasło:<br><input type="password" name="pass" required></label>
<br>
<button name="login">Zaloguj się</button>
</form>
</body>
</html>
我不知道這裏發生了什麼。有人可以向我解釋發生了什麼嗎?我做錯了什麼?
您正在將您的ajax請求發佈到:'index.php'。如果這不是你有你的PHP代碼的地方,那麼它將簡單地返回該頁面。 –
你曾經在PHP中輸出'$ answer'嗎? – chris85
@ chris85我不知道。 – Petrus