HTMLIFrameElement:allowFullscreen 属性

有限可用性

此功能不是基线功能,因为它在一些最广泛使用的浏览器中不起作用。

allowFullscreen 属性是 HTMLIFrameElement 接口的一个布尔值,它反映了 <iframe> 元素的 allowfullscreen 属性,指示是否允许 iframe 的内容使用 requestFullscreen()

注意:此属性被认为是一个旧版属性。请改用 allow="fullscreen"HTMLIFrameElement.allow

一个布尔值。

示例

html
<iframe id="el" allowfullscreen></iframe>
js
const el = document.getElementById("el");
console.log(el.allowFullscreen); // Output: true

规范

规范
HTML 标准
# dom-iframe-allowfullscreen

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅