我有一個表格,超過AJAX的職位數據。響應以URL中GET變量的形式返回。例如,如果寫入表單數據失敗,返回地址應爲:http://example.com/?error=1
如何使用jquery檢查此問題。現在當我在msg變量上做一個console.log時,我只是得到了example.com的html輸出(我猜這是有道理的)。儘管我需要GET變量。我將如何實現這一目標?
$('#wp_email_capture').submit(function(e){
var email = $('#wp-email-capture-email').val();
$.ajax({
type: "GET",
url: "/",
data: "wp_capture_action=1&wp-email-capture-email=" + email
}).done(function(msg) {
console.log(msg)
});
e.preventDefault();
});
檢查這篇文章:如何獲得與jQuery GET和POST變量?] [1] [1]:http://stackoverflow.com/questions/439463/how-to-get-get-and-post-variables-with-jquery – Nathan 2012-03-29 22:09:18
嗯,我沒有最終找到這個問題的解決方案,所以我結束了而不是從我的php文件輸出json。 – greatwitenorth 2012-03-30 15:24:06