我有一個調用php頁面的ajax函數。我得到的問題是,錯誤函數不斷調用。可以讓錯誤函數調用而不是成功函數?我的ajax代碼是怎麼回事?
AJAX:
function register() {
$.ajax({
type: "POST",
url: "php/account.php",
success: function() {
alert("asdf");
},
error: function() {
alert("Could not register. Please try again.");
},
404: function() {
alert("not found");
}
});
}
PHP
<?php
echo "Test";
?>
的文件奠定了成層次結構視圖看起來像這樣:
index.php
js folder -> registration.js
php folder -> account.php
的registration.js和account.php是包含在index.php中,因此registration.js和account.php應該像在in中一樣在目錄中讀取dex.php。
我在做什麼錯? :X
在[螢火](HTTP會發生什麼:/ /getfirebug.com/)當你發出ajax請求? – 2011-04-17 02:18:45