我的 Javascript 文件中有一个带有 ActiveX 对象的函数来模拟全屏模式的 F11。我想签署这个代码以避免一些安全问题,任何知道我该怎么做的人吗?
编码 :
function fullScreenWindow() {
var el = document.documentElement
, rfs = // for newer Webkit and Firefox
el.requestFullScreen
|| el.webkitRequestFullScreen
|| el.mozRequestFullScreen
|| el.msRequestFullScreen
;
if(typeof rfs!="undefined" && rfs){
rfs.call(el);
} else if(typeof window.ActiveXObject!="undefined"){
// for Internet Explorer
var wscript = new ActiveXObject("WScript.Shell");
if (wscript!=null) {
wscript.SendKeys("{F11}");
}
}
}
感谢您的任何帮助。