全屏不在IE中工作

时间:2015-11-16 10:10:40

标签: javascript jquery html5 responsive-design fullscreen

因此我启动并运行了滑块模块,但Internet Explorer 11没有响应全屏按钮。 Firefox和Chrome工作得很好。我在Stack上发现了这段代码,但仍然没有区别。有什么想法吗?

function toggleFullScreen() {
  if (!document.fullscreenElement &&    // alternative standard method
      !document.mozFullScreenElement && !document.webkitFullscreenElement) {  // current working methods
    if (document.documentElement.requestFullscreen) {
      document.documentElement.requestFullscreen();
    } else if (document.documentElement.mozRequestFullScreen) {
      document.documentElement.mozRequestFullScreen();
    } else if (document.documentElement.webkitRequestFullscreen) {
      document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
    } else if (elem.msRequestFullscreen) {
            elem.msRequestFullscreen();
    }


  } else {
    if (document.cancelFullScreen) {
      document.cancelFullScreen();
    } else if (document.mozCancelFullScreen) {
      document.mozCancelFullScreen();
    } else if (document.webkitCancelFullScreen) {
      document.webkitCancelFullScreen();
    } else if (document.msExitFullscreen) {
            document.msExitFullscreen();
        }
  }
}

 </script>

很抱歉,如果这个问题已得到解答。我还没有找到解决方案。

1 个答案:

答案 0 :(得分:1)

根据此site,IE不支持全屏API。似乎没有关于这是否也是IE11支持的信息。

根据MDN的article on fullscreen,对于大多数浏览器来说,这种技术似乎仍然具有实验性。

你也可以尝试这个

Internet Explorer full screen mode?

Set window to fullscreen (REAL fullscreen; F11 functionality) by javascript

<script type="text/javascript">
    function max() {
        var wscript = new ActiveXObject("Wscript.shell");
        wscript.SendKeys("{F11}");
    }
</script>

如果您真的想在Internet Explorer中使用全屏....尝试在jquery中给滑块宽度和高度100%。