我是 JavaScript 新手,只想将我的 JavaScript 代码放在另一个文件中。
这是我的html页面:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>my badass page</title>
<script type="text/javascript" scr = "testing.js"></script>//this contains the function I want to call
</head>
<body id="body">
<button type="button", onclick="showDate()">show the date</button>
</body>
</html>
这是 testing.js 文件:
function showDate() {
alert ("this works")
}
我假设我只是犯了一个初学者错误,因为它看起来很常见,但我无法弄清楚。