第一种
<script typr="text/javascript">
...
</script/>
第二种
<html>
<head>
<meta http-equiv="Content-Type" content="text/html";charset="gb/8030">
<title>...</title>
</head>
<body>...</body>
</html>
第三种 引用外部文件
script.js
alert("JS代码");
<script src="script.js"></script>//引用即执行alert
js在页面中的位置
<head>
<script type="text/javascript">
//JS代码
</script>
//或 <scipt src="cod.js"></script>
</head>
<body>
<script type="text/javascript">
//js代码
</script>
</body>
javascript作为一种脚本语言可以放在HTML页面中任何位置,前面的script先执行