我有一个相当简单的HTML文件:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>deploy.rb</title>
<script src="test.js" type="text/javascript"></script>
<script src="OtherScript.js" type="text/javascript"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
body
</body>
</html>
test.js看起来像这样:
window.onload = function () { alert("It's loaded!") }
有人能告诉我为什么在页面加载时我没有收到警报吗? (以及为什么OtherScript.js中没有任何函数正在执行)
The full contents of the html file can be found here, if it helps.
答案 0 :(得分:0)
window.onload
。我将两个脚本合并到同一个文件中,现在它可以工作。
答案 1 :(得分:-2)
您可以检查目录结构。代码看起来很好,所以如果我不得不猜测.js文件找不到正确的。如果它们与HTML文件位于同一目录中,您可以尝试将./
附加到文件名的开头。