src 和 href 是两个常用的 HTML 属性,它们分别用于不同类型的资源引用,有以下区别:
src(source):
src 属性用于指定外部资源的地址,比如图像、音频、视频、嵌入框架等的地址。
在 < img >、< audio >、< video >、< iframe > 等元素中,src 属性通常用于指定要加载的外部资源的地址。
<img src="image.jpg" alt="Image">
<iframe src="https://www.example.com" width="600" height="400"></iframe>
href(hypertext reference):
href 属性用于指定超链接的目标地址,用于创建网页间的链接。
在 < a>(锚点)、< link>(样式表链接)、< area>(图像映射区域)、< base>(基准链接)等元素中,href 属性通常用于指定目标资源的 URL。
<a href="https://www.example.com">Link</a>
<link rel="stylesheet" href="styles.css">