运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The DOMToken Object</h1> <h2>The supports() Method</h2> <iframe id="myFrame"></iframe> <p>The ifame supports "allow-nonsense":</p> <p id="demo"></p> <script> const list = document.getElementById("myFrame").sandbox; document.getElementById("demo").innerHTML = list.supports("allow-nonsense"); </script> </body> </html>