html如何引入js文件

编辑: admin 分类: html5 发布时间: 2022-06-08 来源:互联网

两种引入方法:1、利用script标签的src属性来引入js文件,语法“<script src="js文件路径"></script>”。2、在JavaScript代码中引用js文件,语法“script标签对象.src = "文件路径";”。

本教程操作环境:windows7系统、javascript1.8.5&&HTML5版、Dell G3电脑。

js文件是指储存了JavaScript代码的文本文件,后缀名为“.js”。

那么怎么在html中引入js文件,有以下两种方法:

第一种:利用script标签的src属性来引入js文件

<script type="text/javascript" src="../js/jquery-1.8.3.js"></script>//(相对路径)
<script src="http://common.cnblogs.com/script/jquery.js" type="text/javascript"></script>//(绝对路径)

第二种:在JavaScript代码中引用外部js

<script>
  window.onload = function(){
    var script = document.createElement("script");
    script.setAttribute("type","text/javascript");
    script.src = "http://common.cnblogs.com/script/jquery.js";
    document.getElementsByTagName("head")[0].appendChild(script);  
  }
</script>

推荐学习:html视频教程

以上就是html如何引入js文件的详细内容,更多请关注自由互联其它相关文章!

【转自:韩国lg机房 http://www.558idc.com/lg.html欢迎留下您的宝贵建议】