我正在用 JavaScript 试验来感受它,并且已经遇到了一个问题。这是我的html代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script type="text/javascript" src="testing.js"></script>
</head>
<body onload="writeLine()">
</body>
</html>
这是 JavaScript testing.js:
function writeLine()
{
document.write("Hello World!")
}
这是样式表styles.css:
html, body {
background-color: red;
}
这是一个非常简单的例子,但我可能选择了一个尴尬的例子,在 body 标签中使用 on-load。所以上面的代码加载并运行函数,但是样式表什么都不做,除非我删除头部的脚本标签。我曾尝试将脚本标签放在其他任何地方,但没有任何效果。我在网上研究了如何正确链接到 JavaScript 文件,但没有找到明确的解决方案,谁能指出我的错误?
我以前用过JavaScript,但在我不再使用它之前,我想从一开始就清楚地了解它