Jquery done()的正确语法是什么?

时间:2014-07-30 21:04:33

标签: javascript jquery

我有以下语法: enter image description here

我在第6行收到以下错误:

Uncaught SyntaxError: Unexpected token {

我在done()上阅读了api文档,我看不出我在这里做错了什么。

2 个答案:

答案 0 :(得分:5)

$.post(path).done(funtion(data) { ....
                     ^----notice any missing characters here, a "c" perhaps?

JS试图调用一个名为“funtion”的函数,这意味着{之后的语法是非法的。由于它首先解析了语法错误,因此无法告诉您“功能”不存在。

答案 1 :(得分:3)

你写了funtion而不是function

$.post(path).done(function(data) { console.log(data) });