HTML嵌入JavaScript脚本
在<head>标签中使用<script>脚本标签
<html>
<head>
<title>HTML页面嵌入JS_01</title>
<script language="javascript">
window.alert("Say Hello");
alert("Hello World!");
</script>
</head>
<body>
</body>
</html>
在HTML页面中引入外部JavaScript文件
新建1.js文件,在该文件中编写如下程序:
alert("hello world!");
<html>
<head>
<title>HTML页面嵌入JS_02</title>
<script language="javascript" src="1.js"></script>
<!--错误的写法:-->
<script language="javascript" src="1.js" />
</head>
<body>
</body>
</html>
JavaScript直接嵌入到HTML标签中
<html>
<head>
<title>HTML页面嵌入JS_03</title>
</head>
<body>
<input type="button" value="SayHello" onclick="javascript:alert('Hello1');alert('Hello2');"/>
</body>
</html>