我尝试使用$.getscript
在另一个.js文件中执行某个功能,但我收到的错误是我不确定是什么意思。
我的代码:
$.getscript("Tool_Functions.js",function(){
getGraphData(id)
.done(function (graphResponse) {
Drawgraph(graphResponse);
})
.fail(function (x) {
// Fail code
});
});
是因为该函数是异步的吗?
答案 0 :(得分:2)
JavaScript是一种区分大小写的语言。您只需使用getScript()
代替getscript()
。