HTMLIFrameElement: sandbox 属性

sandboxHTMLIFrameElement 接口的只读属性,它返回一个 DOMTokenList,表示对嵌套内容行为的额外限制。

它反映了 <iframe> 元素的 sandbox 属性。

一个 DOMTokenList。每个项目必须是 <iframe> 元素的 sandbox 属性中列出的标记之一。

示例

html
<iframe
  id="el"
  title="example"
  src="https://example.com"
  sandbox="allow-same-origin allow-scripts"></iframe>
js
const el = document.getElementById("el");
console.log(Array.from(el.sandbox)); // Output: ["allow-same-origin", "allow-scripts"]

el.sandbox = "";
console.log(Array.from(el.sandbox)); // Output: []

规范

规范
HTML 标准
# dom-iframe-sandbox

浏览器兼容性

BCD 表格仅在浏览器中加载