目录

Fullscreen API fullscreenElement

示例

获取当前处于全屏模式的元素:

var elem = document.fullscreenElement;

描述

fullscreenElement 属性返回以全屏模式显示的当前元素,或者无效的当不是全屏时。

提示:使用元素.requestFullscreen()方法以全屏模式查看元素。

提示:使用元素.exitFullscreen()取消全屏模式的方法。


浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。笔记:有些浏览器需要特定的前缀(见括号):

Property
fullscreenElement 71.0
45.0 (webkit)
79.0
11.0 (ms)
64.0
47.0 (moz)
5.1 (webkit) 40.0 (webkit)

示例

使用跨浏览器代码的前缀:

if (
  document.fullscreenElement || /* Standard syntax */
  document.webkitFullscreenElement || /* Safari and Opera syntax */
  document.msFullscreenElement /* IE11 syntax */
) {
...
}

语法

document.fullscreenElement

技术细节

返回值: 返回元素当前处于全屏模式,或者无效的如果全屏模式不可用