我有一個表單提交我想通過Ajax運行腳本,但由於某種原因,它返回一個錯誤。任何想法有什麼不對?我的代碼如下:jquery Ajax - 提交表單與AJAX不工作
$('.spiderform').submit(function (event) {
event.preventDefault();
alert($(this).serialize());
$.ajax({
type: 'get',
url: 'http://spidertest.epiphanydev1.co.uk/spider/?'+$(this).serialize(),
beforeSend: function() {
alert('sending form');
},
success: function() {
alert('worked');
},
error: function(jon) {
alert('error');
}
});
});
感謝
你能發佈你得到的錯誤嗎? – meo 2010-04-21 10:09:43
我如何得到錯誤是什麼? – Probocop 2010-04-21 10:20:40
使用firebug查看錯誤,打開它的控制檯並嘗試提交表單。該錯誤將顯示在螢幕控制檯中。 – 2010-04-21 10:45:15