JQuery post():不调用回调函数

时间:2011-10-17 16:12:52

标签: jquery

我有这一行:

$.post('/update', $('form').serialize(), function(){alert("hello")});

问题是警报未显示。

这是回复:

Request URL:http://aib.localhost/update
Request Method:POST
Status Code:200 OK 

Chrome Inspector中没有错误。

我正在使用jQuery 1.6.4。

1 个答案:

答案 0 :(得分:0)

不确定这是否是问题,请尝试在提醒后添加分号。

$.post('/update', $('form').serialize(), function(){alert("hello");});