gpt4 book ai didi

javascript - 互联网浏览器 : Mixed Content Delivery Warning

转载 作者:太空宇宙 更新时间:2023-11-03 15:06:58 25 4
gpt4 key购买 nike

以下 javascript 导致 Internet Explorer 发出“混合内容”警告:

function init() {
// quit if this function has already been called
if (arguments.callee.done) return;

// flag this function so we don't do the same thing twice
arguments.callee.done = true;

// kill the timer
if (_timer) clearInterval(_timer);

// do stuff
};

/* for Mozilla/Opera9 */
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, false);
}

/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>");
var script = document.getElementById("__ie_onload");
script.onreadystatechange = function() {
if (this.readyState == "complete") {
init(); // call the onload handler
}
};
/*@end @*/

/* for Safari */
if (/WebKit/i.test(navigator.userAgent)) { // sniff
var _timer = setInterval(function() {
if (/loaded|complete/.test(document.readyState)) {
init(); // call the onload handler
}
}, 10);
}

/* for other browsers */
window.onload = init;

它用于检测 DOM 何时完成加载。此脚本中的什么会导致混合内容警告?

最佳答案

我的猜测是创建了一个不使用 HTTPS 的脚本标记。

关于javascript - 互联网浏览器 : Mixed Content Delivery Warning,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5255238/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com