我正在引用一个函数
.as-console {background-color:black !important; color:lime;}
.as-console-wrapper {max-height:100% !important; top:0;}
在HTML文件中。
现在我想用
来称呼它<script type="text/javascript" src='../main.js'> </script>
,但找不到定义。当我在HTML文件中声明该函数时,它将找到该函数。我可以单击main.js的引用,它会打开文件,因此位置正确。因此,它也应该找到该功能,或者我不仅需要main.js文件,还需要引用该功能?
答案 0 :(得分:0)
检查您是否正确引用了JavaScript。检查js文件的路径。
//1.js inside the same folder
function test() {
alert('clicked');
}
<!-- index.html -->
<html>
<head>
<meta charset="utf-8">
<title>StackOverflow</title>
<script src="./1.js"></script>
</head>
<body>
<a href=# onclick="test()" >Test</a>
</body>
</html>