URL和LINK有什么区别?

人们谈论URLLINK就好像它们是不同的东西,但它们肉眼看起来是一样的。

他们之间有什么区别?


URL是“统一资源定位器”的首字母缩写,它是指定Internet上资源位置的地址。 典型的URL必须指定用于访问资源的协议,它所在的主机名称以及资源的路径:http://www.server.com/main/folder/resource.html上面的URL表示文档resource.html位于Web服务器www.server.com,可以在路径/ main /文件夹中找到它。

一个超链接或简单的链接就是“电子文档中的一个元素,它链接到同一个文档中的另一个地方,或者链接到一个完全不同的文档。通常,你点击超链接来跟随链接。

资源


这些是一些网址:

  • http://example.com/
  • mailto:alice@example.com
  • https://example.com/all.css
  • 在文档中,可以链接这些URL。 这通常会允许消费者对此URL进行操作(通过点击它或在打开文档时自动执行等操作),例如:

  • 访问由链接的URL标识的页面
  • 发送电子邮件到链接的电子邮件地址
  • 下载链接引用的样式表
  • 在HTML文档中(这是最流行的,但不是唯一可以包含链接的文档格式),您可以(例如)使用a元素创建一个超链接(又名。链接),该超链接可以有一个标签(或锚文本),例如:

  • <a href="http://example.com/">This is a link.</a>
    <a href="http://example.com/">http://example.com/</a>
    <a href="http://example.com/">http://example.net/misleading-label</a>

  • <a href="mailto:alice@example.com">email me</a>
    <a href="mailto:alice@example.com">alice@example.com</a>

  • <a href="https://example.com/all.css">A CSS file</a>
    <link href="https://example.com/all.css" rel="stylesheet" />

  • 链接地址: http://www.djcxy.com/p/1897.html

    上一篇: What is the difference between a URL and a LINK?

    下一篇: What is the difference between URI, URL and URN?