JS的使用方式_javascript

1.直接嵌入js

<!DOCTYPE html>
<html>
<body>

<script>
alert("这是一个js的脚本")
</script>

</body>
</html>

2.头部定义js

<!DOCTYPE html>
<html>
<head>
<script>
function myFunction()
{
alert("hello js")
}
</script>
</head>
<body>
<h1>Hello Javascript</h1>
<p id="demo">一个段落</p>
<button type="button" onclick="myFunction()">尝试一下</button>
</body>
</html>

3.外部引入js

<!DOCTYPE html>
<html>
<body>
//引用文件外部定义好的js文件逻辑
<script src="myScript.js"></script>
</body>
</html>