The difference of src and href
Posted easggoinghulk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The difference of src and href相关的知识,希望对你有一定的参考价值。
href是Hypertext Reference的缩写,表示超文本引用。用来建立当前元素和文档之间的链接。常用的有:link、a。例如:
<link href="reset.css" rel=”stylesheet“/>
浏览器会识别该文档为css文档,并行下载该文档,并且不会停止对当前文档的处理。这也是建议使用link,而不采用@import加载css的原因。
src是source的缩写,src的内容是页面必不可少的一部分,是引入。src指向的内容会嵌入到文档中当前标签所在的位置。常用的有:img、script、iframe。例如
<script src="script.js"></script>
当浏览器解析到该元素时,会暂停浏览器的渲染,知道该资源加载完毕。这也是将js脚本放在底部而不是头部得原因。
简而言之,src用于替换当前元素;href用于在当前文档和引用资源之间建立联系。
以上是关于The difference of src and href的主要内容,如果未能解决你的问题,请参考以下文章
[Banner] The number of titles and images is different
[Banner] The number of titles and images is different
python: the difference between append and extend
difference of top and left between Javascript and Jquery