我要在页眉和页脚中添加一个外部CSS文件和一个外部JS文件。加载HTTPS页面时,某些浏览器抱怨我正在加载不安全的内容。
当页面本身是HTTPS时,是否有一种简单的方法可以使浏览器通过HTTPS加载外部内容?
Answers:
使用协议相对路径。
因此不
<link rel="stylesheet" href="http://example.com/style.css">
<script src="http://example.com/script.js"></script>
但是
<link rel="stylesheet" href="//example.com/style.css">
<script src="//example.com/script.js"></script>
那么它将使用父页面的协议。
https://
资源就总是使用资源。他们将加载就好在你的页面,无论方案
当评论后面的答案时,nute和James Westgate是正确的。
如果我们看一下杂乱无章的工业级外部javascript包含,成功的javascript使用document.location.protocol嗅探和脚本元素注入都使用正确的协议。
所以你可以使用类似:
<script type="text/javascript">
var protocol = (
("https:" == document.location.protocol)
? "https"
: "http"
);
document.write(
unescape(
"%3Cscript"
+ " src='"
+ protocol
+ "://"
+ "your.domain.tld"
+ "/your/script.js"
+ "'"
+ " type='text/javascript'
+ "%3E"
+ "%3C/script%3E"
) // this HAS to be escaped, otherwise it would
// close the actual (not injected) <script> element
);
</script>
外部CSS包含也可以这样做。
顺便说一句:注意在CSS中仅使用相对url()路径(如果有的话),否则您可能仍会收到“混合的安全和不安全”警告...。
如果您使用相对路径(并且内容在同一域中),则内容应使用请求该页面所使用的协议。
但是,如果您要跨域访问CDN或资源站点,或者需要使用绝对路径,则将需要使用服务器端脚本来更改链接,或者始终使用https://
与转义的响应(也将起作用)相反,您可以跳过该部分,并使用正确的方法将节点添加到dom树中:
<script type="text/javascript" language="javascript">
var fileref=document.createElement('script');
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", document.location.protocol + '//www.mydomain.com/script.js');
document.getElementsByTagName("head")[0].appendChild(fileref);
</script>
但是相对于协议的路径将是必经之路。