我正在尝试从 html 文件中调用一个简单的外部 javascript 函数。
我无休止地搜索并相信以下内容应该有效。
html:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>testing</title>
<script type="text/javascript" src="my_js_file.js"></script>
</head>
<body>
<button type="button" onclick="alert_function()">alert</button>
</body>
</html>
my_js_file.js:
function alert_function() {
alert("hello world!");
}
笔记:
- 当我将函数移动到 html 文件内部时它可以工作
- html文件和js文件在同一个文件夹中
- 我正在使用 Dreamweaver
任何见解将不胜感激!