我有一些javascript的gremlins,由於某種原因,我的jquery ajax發佈請求根本不會出去。我所有的代碼看起來都很好,但是javascript並不是我的強項,任何人都可以看到我的錯在哪裏?jquery不會提交ajax發佈請求
$(".deleteWeek").click(function(e){
var answer = confirm("This will delete the selected week. Are you sure?");
if(answer){
$.ajax({
type: 'POST',
url: 'http://localhost/todo/index.php/home/ajax_delete',
data: { page_id : $(this).attr('id') },
success: tableRedraw(data),
dataType: 'html'
})
}
e.preventDefault();
})
,如果有幫助,我tableRedraw功能:
function tableRedraw(data){
$('.week').remove(),
$('thead').after(data)
}
我的點擊事件肯定是被註冊的,我可以把處理器警報和他們拿出好的,但據螢火蟲關注,阿賈克斯方面沒有任何發生。任何幫助將非常感激。
不錯的背景信息,以及感謝您的幫助 – richzilla 2010-10-12 22:48:07
沒問題! (需要字符) – 2010-10-12 22:54:38