Js代码存放在当前html中
<html>
<head>
<script>
console.log('abc');
</script>
<head>
</html>
Js代码存放在其他文件中
往往js代码会比较庞大,我们将所有的代码都写在同一个html中,并不合适,这时我们就可以将js代码进行分类分文件存放,需要使用的地方调用即可
引用其他js文件,可以是本地文件,也可以是网络文件
<script src="./myScript.js"></script>
<script src="../myScript.js"></script>
<script src="https://www.hongtu.cn/study/myScript.js"></script>
例
<!-- myScript.js -->
function myfunc() {
console.log('abcd');
}
<!-- test.html -->
<html>
<head>
<script src="myScript.js"></script>
<script>
myfunc();
</script>
<head>
</html>
原创文章,作者:guozi,如若转载,请注明出处:https://www.sudun.com/ask/79527.html