错误:未捕获的 ReferenceError:未定义 myFunction
这是我的 .js 文件,它不工作或调用我的 HTML
function = myFunction()
{
var ret = "";
for (var i = 15; i < 26; i++)
{
ret += i + " " + i*2 + " " + i*3 + "\n";
}
alert(ret);
}
这是我的 HTML 代码:
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="Test1.js"></script>
</head>
<body>
<h1> Exercise 4 - LAB 4 </h1>
<h2> Exercise 2.1 </h2>
<button type="button" onclick= "myFunction() "> Press Me </button>
</body>
</html>
错误:未捕获的 ReferenceError:未定义 myFunction