以“//”开头的url,省略“http:”有啥影响[重复]
Posted
技术标签:
【中文标题】以“//”开头的url,省略“http:”有啥影响[重复]【英文标题】:What is the effect of starting a url with "//", and leaving out "http:" [duplicate]以“//”开头的url,省略“http:”有什么影响[重复] 【发布时间】:2012-01-10 18:01:52 【问题描述】:可能重复:Absolute URLs omitting the protocol (scheme) in order to preserve the one of the current page
我最近注意到“like”和“tweet”按钮的嵌入代码不包含 http 协议。例如:
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
<script>(function(d, s, id)
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=555";
fjs.parentNode.insertBefore(js, fjs);
(document, 'script', 'facebook-jssdk'));</script>
他们为什么这样做?
【问题讨论】:
可能是它自动添加http.... Absolute URLs omitting the protocol (scheme) in order to preserve the one of the current page 和许多其他人的可能副本,例如 this one 另见What are those URL's that are starting with // - that you can see within Google+ html source? 【参考方案1】:根据您的网站使用的协议,http、https、spdy 等,它将使用与您的网站使用的相同协议。换句话说,它将使用当前使用的协议。
【讨论】:
还有file://
和ftp://
和gopher://
等以上是关于以“//”开头的url,省略“http:”有啥影响[重复]的主要内容,如果未能解决你的问题,请参考以下文章