码迷,mamicode.com
首页 > Web开发 > 详细

js的引入方式

时间:2019-08-18 23:39:28      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:执行   class   dex   通过   str   外部文件   strong   标签   它的   

 

  • 行内引入:安全性低
  • <div style="width: 300px;background: red; border-radius: 20px" onclick="alert(‘OK‘)">你好</div>

     

  • 内嵌式:写在script标签中
  • 外链式:通过script标签的src属性
  • 1 document.write(‘<script src="js文件的路径"></script>‘)

    注意:我们使用外链式引入JS,通过src把外部文件引入到当前的HTML页面,在它的<script>中间,不能在编写任何的JS代码了,即使写了,不会起作用

     

  • <script src="js/index.js">
        alert(‘我是外链式标签块中的代码‘);//外链式标签块中不要写任何js代码,写了不会报错,肯定不执行
    </script>

     

js的引入方式

标签:执行   class   dex   通过   str   外部文件   strong   标签   它的   

原文地址:https://www.cnblogs.com/lidaoshao/p/11374292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!