我正在尝试完成类似于Calling a function from one JavaScript file which requires another
的操作基本上,我具有index.php,这是主页的主要文件。在索引文件中,我正在从另一个js文件中调用javascript函数。
<script src="js/data.js"></script>
<script>(go_call())</script>
在data.js
内:
function go_call(){
alert('working');
}
我收到以下错误:Uncaught ReferenceError: go_call is not defined
UPDATE 1:
我的原始代码在IE中工作正常,但是我在Google chrome中出现了此错误。
答案 0 :(得分:0)
function1(html) {
var self = this;
html.find('a').each(function () {
var url = $(this).attr('href');
self.function2(url);
});
}