可能重复:
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>
为什么他们这样做?
答案 0 :(得分:8)
根据您的网站使用的协议,http,https,spdy等,它将使用与您的网站使用的协议相同的协议。换句话说,它将使用当前使用的协议。