未捕获的TypeError:$ .getscript不是函数

时间:2017-02-27 20:58:17

标签: jquery

我尝试使用$.getscript在另一个.js文件中执行某个功能,但我收到的错误是我不确定是什么意思。

我的代码:

$.getscript("Tool_Functions.js",function(){
     getGraphData(id)
         .done(function (graphResponse) {
             Drawgraph(graphResponse);                 
         })
         .fail(function (x) {
             // Fail code
         });
});

是因为该函数是异步的吗?

1 个答案:

答案 0 :(得分:2)

JavaScript是一种区分大小写的语言。您只需使用getScript()代替getscript()