我在 IE9 中有一个Greasemonkey-for-IE脚本,它正在导入 jQuery。但是在安全页面上它不起作用。
我越来越:
SEC7111: HTTPS security is compromised by http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
失败的代码是:
var script = document.createElement("script");
script.setAttribute("src",
"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
我怎样才能使这项工作?该脚本不会在 Firefox 中引起问题。