-
繁花不似锦
①:可以直接在当前html文件里面写,如<script>window.onload = function(){}</script>②:可以新建一个后缀名为.js的脚本文件,然后在Html引入,如新建了一个index.js文件,然后在html中引入:<script src="index.js"></script>src里面是js文件的路径
-
慕盖茨4494581
引入:<script type="text/javascript" src="xxx/xxx/xxx/xxx.js"></script>编写:<script type="text/javascript">function test(){alert("就这么用");}</script>
-
萧十郎
你是想引入外部的js文件吧在<head>中用<script type="text/javascript" src="js文件路径"></script>这个引入