Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.mozFullScreen

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

概述

返回一个布尔值,表明当前文档是否处于全屏模式.

语法

var isFullScreen = document.mozFullScreen || document.webkitIsFullScreen;

例子

function isDocumentInFullScreenMode() {
  // 过去由F11触发的那种浏览器全屏模式和HTML5中内容的全屏模式是不一样的
  return (document.fullScreenElement && document.fullScreenElement !== null) ||    
      (!document.mozFullScreen && !document.webkitIsFullScreen);                 
}

备注

查看使用全屏模式来了解更多相关内容.

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? 9.0 (9.0) ? ? ?
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 9.0 (9.0) ? ? ?

规范

不属于任何公开的规范

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, AshfaqHossain, ziyunfei
 最后编辑者: teoli,