情况有很多种。一下列举几种常见的。
第一种情况你的JS外联文件被覆盖了。通常是变量名和函数名相同被覆盖。
第二种情况:如果你是外联JS文件是在head标签中链接,那么有可能 外联JS文件没有window.onload = function(){}
第三种情况:JS文件路径引用错误
第四种情况:js文件引用正确,但是这个文件的API方法使用错误。
以上是常见的几种情况
外联js:
index.html中的代码
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="print.js"></script>
</head>
<body onload="print()">
</body>
</html>
print.js中的代码
function print() {alert("我是外联js")
}
代码结构
运行结果:
改为内联js
index.html中的代码:
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body onload="print()">
</body>
<script>
function print() {
alert("我是内联js")
}
</script>
</html>
运行结果: