我試圖用$.getscript
在另一個.js文件中執行一個函數,但是我收到一個錯誤,我不知道是什麼意思。
我的代碼:
$.getscript("Tool_Functions.js",function(){
getGraphData(id)
.done(function (graphResponse) {
Drawgraph(graphResponse);
})
.fail(function (x) {
// Fail code
});
});
是因爲該函數是異步的,的?
它的'getScript()'不'getscript()' – j08691