我有2个.js文件:list.js和filter.js。 list.js引用了filter.js。
//filter.js
function isAnother(){
...
}
//list.js
/// <reference path="~/Scripts/filter.js"/>
var report= function loadList(){
...
var self=this;
self.loadItem = function(id)
isAnother();**//Uncaught TypeError: undefined is not a function**
...
}
我在isAnother()调用中收到错误未捕获的TypeError:undefined不是函数。我意识到在Google Chrome的调试面板中,Scripts文件夹中没有加载filter.js文件。如何正确引用此功能?
答案 0 :(得分:0)
如果您在网络浏览器中执行这两个文件,请确保已在HTML页面中链接了两个JavaScript文件。
<script src="filter.js"></script>
<script src="list.js"></script>