js的三种引入方式
Posted wbyixx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js的三种引入方式相关的知识,希望对你有一定的参考价值。
行内
写在html元素内部
<input type="button" value="按钮" onclick="alert('Hello World')" />
内部
写在HTML文件内,用script标签包括
<head>
<script>
alert('Hello World!');
</script>
</head>
外部
用script标签,链接外部的js文件
<script src="main.js"></script>
以上是关于js的三种引入方式的主要内容,如果未能解决你的问题,请参考以下文章