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 的浏览器中加载。