越来越多的人开始注意到Web站点源代码中的链接以两个斜杠开头。例如:
<a href="//example.com/1.png">Image</a>
为什么这么做?
这是一个协议相关的URL(通常是HTTP或HTTPS)。因此,如果我在http://example.org
上,我链接(或包含图像,脚本等)到//example.com/1.png
,它会转到http://example.com/1.png
。如果我在https://example.org
上,它会转到https://example.com/1.png
。