使用 // 而不是协议://

发布于 2024-12-09 06:44:38 字数 814 浏览 0 评论 0原文

Possible Duplicate:
Is it valid to replace with // in a <script src=“…”>?
Absolute URLs omitting the protocol (scheme) in order to preserve the one of the current page
Does using //www.example.com in Javascript chose http/https protocol automatically

I'm looking at some sample code from facebook and I see:

<script src="//connect.facebook.net/en_US/all.js"></script>

they use // instead of http:// -- is this something fancy that I don't know about yet?

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

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

发布评论

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

评论(3

与酒说心事 2024-12-16 06:44:38

它称为“协议相关 URL”。类似于以“/”开头的 url 相对于当前域的根的方式,以“//”开头的 URL 将链接到指定的主机和路径,但使用当前页面加载时使用的任何协议。

维基媒体博客上对它们有很好的描述,以及它们为何有用:

http://blog.wikimedia.org/2011/07/19/protocol-relative-urls-enabled-on-test-wikipedia-org/

It's called a "protocol-relative URL". Similar to how a url starting with "/" is relative to the root of the current domain, a URL starting with "//" will link to the specified host and path, but using whatever protocol the current page was loaded using.

There's a nice description of them, and why they're useful, on the Wikimedia blog:

http://blog.wikimedia.org/2011/07/19/protocol-relative-urls-enabled-on-test-wikipedia-org/

彼岸花似海 2024-12-16 06:44:38

基本上,它使您能够输出一个 URL 并让它使用当前正在使用的任何协议。

无论用户使用的是 HTTP 还是 HTTPS,Facebook 都可能使用相同的 HTML 代码。这是一种无需指定协议即可完全限定域的方法。

Basically it gives you the ability to spit out one URL and have it use whatever protocol is currently being used.

Facebook probably uses the same HTML code regardless of whether the user is on HTTP or HTTPS. It's a way to fully qualify the domain without specifying the protocol.

沫雨熙 2024-12-16 06:44:38

它是另一种类型的相对 URL,它使用与页面所在的相同协议。

It's another type of relative URL, it uses the same protocol that the page is on.

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