javascript - js写的f11全屏功能firefox\google下有效但在ie下无效是怎么回事??
PHP中文网
PHP中文网 2017-04-10 14:56:33
0
2
407
window.onload=function(){
document.getElementById("fullvoide").onclick=function(){
     var el = document.documentElement; 
     var rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen; 
     if (typeof rfs != "undefined" && rfs) { 
              rfs.call(el); 
         } else if(typeof window.ActiveXObject != "undefined"){
              var wscript = new ActiveXObject("WScript.Shell");
              if (wscript!=null) { 
                wscript.SendKeys("{F11}"); 
         }
     }  
  }
}
PHP中文网
PHP中文网

认证0级讲师

reply all(2)
阿神

不知道你用的IE是什么版本,但根据兼容性和IE的API来看,至少得是IE9才可以用。
你可以看看国外的讨论

Ty80

貌似IE6以下的都不支持

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template