我正在使用这个x-editable库,它运行得非常好。但我还有一个问题。
在此x-editable page中,在使用CDN部分中,您可以看到类似这样的内容
<link href="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet"/>
<script src="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
我正在测试示例并且它有效。似乎上面两行指示浏览器从http://cdnjs.cloudflare.com获取css和js文件。我的问题是: http:// 和 // 在这里有什么区别。
答案 0 :(得分:5)
它会根据正在使用的协议选择http://
或https://
。
如果当前页面为https
,则会使用https
访问href。
如果http
,则通过普通http
访问该链接。