用“//”开始一个网址的效果是什么,而忽略了“http:”
可能重复:
绝对URL忽略协议(方案)以保留当前页面的一个
我最近注意到“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,https,spdy等,它将使用与您的网站使用的协议相同的协议。 换句话说,它将使用当前使用的协议。
链接地址: http://www.djcxy.com/p/42219.html上一篇: What is the effect of starting a url with "//", and leaving out "http:"