Failed to execute 'exitFullscreen' on 'Document': Document not active我没有进入全屏模式确通过了this.FullScreen判断
时间: 2024-01-07 14:02:59 浏览: 253
判断窗口是否全屏 IsFullScreen
3星 · 编辑精心推荐
如果您没有进入全屏模式但仍然遇到 "Failed to execute 'exitFullscreen' on 'Document': Document not active" 错误,则可能是因为您在调用 exitFullscreen() 方法之前没有检查当前页面是否处于全屏模式。您可以在调用该方法之前检查 document.fullscreenElement 属性是否为 null,如果为 null,则表示页面当前不处于全屏模式,此时您可以跳过退出全屏模式的操作。因此,您可以在执行 exitFullscreen() 方法之前添加以下代码:
```
if (document.fullscreenElement !== null) {
document.exitFullscreen();
}
```
这将确保页面在进入全屏模式后再退出全屏模式时不会出现错误。
阅读全文