フルスクリーン モードの F11 をシミュレートするために、Javascript ファイルに ActiveX オブジェクトを使用する関数があります。セキュリティの問題を回避するためにこのコードに署名したいのですが、どうすればできるか知っている人はいますか?
コード :
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}");
}
}
}
助けてくれてありがとう。