链接以两个斜杠开头

发布于 2024-12-02 15:54:57 字数 133 浏览 0 评论 0原文

越来越多的人开始注意到网站源代码中的链接以两个斜杠开头。例如:

<a href="//example.com/1.png">Image</a>

为什么要这样做?

More and more, began to notice that the links in the source code on Web sites begin with two slashes. For example:

<a href="//example.com/1.png">Image</a>

Why do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-12-09 15:54:57

这是一个协议相对 URL(通常是 HTTP 或 HTTPS)。因此,如果我在 http://example.org 上,并且链接(或包含图像、脚本等)到 //example.com/1.png,它会转到http://example.com/1.png。如果我访问 https://example.org,它会转到 https://example.com/1.png

这可以让您轻松避免混合内容安全错误。

It's a protocol-relative URL (typically HTTP or HTTPS). So if I'm on http://example.org and I link (or include an image, script, etc.) to //example.com/1.png, it goes to http://example.com/1.png. If I'm on https://example.org, it goes to https://example.com/1.png.

This lets you easily avoid mixed content security errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文