script的安放位置
为什么我把script放在head里面就没有效果啊,只有把script放在body里面才有那些效果。
为什么我把script放在head里面就没有效果啊,只有把script放在body里面才有那些效果。
2016-11-06
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
var mychar=document.getElementById("con");
mychar.style.color="red";
mychar.style.backgroundColor="blue";
mychar.style.fontSize="20px";
mychar.style.width="300px";
</script>
</head>
<body>
<h1 id="con">I love JavaScript</h1>
<p>JavaScript使网页显示动态效果并实现与用户交互功能。</p>
</body>
</html>
按照这个代码完全没有效果;
按照下面的代码就有效果:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<h1 id="con">I love JavaScript</h1>
<p>JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<script type="text/javascript">
var mychar=document.getElementById("con");
mychar.style.color="red";
mychar.style.backgroundColor="blue";
mychar.style.fontSize="20px";
mychar.style.width="300px";
</script>
</body>
</html>
举报