1
我正在開發一個Ajax項目。在我的網頁作品,包括本節的一切:jQuery ajax TypeError:非法調用
var data = {
doc: "sample",
action: "updatemsg",
dbid: 97,
message: "text"
};
$.ajax({
url: ANNOTATION_ENDPOINT,
data: data,
success: console.log,
error: console.log
});
然而,在每次請求時,它拋出這個錯誤:
Uncaught TypeError: Illegal invocation jquery.js:974
fire jquery.js:974
self.fireWith jquery.js:1084
done jquery.js:7803
callback jquery.js:8518
和console.log
調用從來沒有。 ANNOTATION_ENDPOINT
是一個有效的URL;我的其他功能使用它沒有問題。
我已經把這個問題分解到了這個小部分,但我在這裏很困惑。任何見解?
相關:http://stackoverflow.com/questions/8159233/typeerror-illegal-invocation-on-console-登錄申請 – 2013-03-09 17:16:57