美文网首页随笔
知识普及-src和href

知识普及-src和href

作者: 丁小时候 | 来源:发表于2016-09-07 23:37 被阅读7次

    src

    • 加载script的时候用到

      <script type = "text/javascript" src = "index.js"/> </script>

    • 加载css的时候用到

      <link rel = "stylesheet" href = "index.css">

    • 两者区别

    href 表示超文本引用, 在link* 和 a标签上引用, href的内容是引用,是与该页面有关联;
    src表示来源地址 在 script img iframe 上引用 , src的内容是页面必不可少的是引入;

    相关文章

      网友评论

        本文标题:知识普及-src和href

        本文链接:https://www.haomeiwen.com/subject/vehsettx.html