我有这一行:
$.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。
答案 0 :(得分:0)
不确定这是否是问题,请尝试在提醒后添加分号。
$.post('/update', $('form').serialize(), function(){alert("hello");});