gpt4 book ai didi

javascript - 检测对 HTML5 iframe 沙盒属性的支持

转载 作者:太空狗 更新时间:2023-10-29 13:39:44 25 4
gpt4 key购买 nike

有谁知道如何在不依赖版本检查等的情况下检测浏览器是否支持 iframe 沙箱属性?

最佳答案

您可以检查 iframe 元素是否具有 sandbox 属性:

var sandboxSupported = "sandbox" in document.createElement("iframe");

旁注

查找特征检测的一个好方法是查看 Modernizr看看它是否已经有了。这是Modernizr code for the sandbox attribute test :

Modernizr.addTest('sandbox', 'sandbox' in document.createElement('iframe'));

或者(如果您需要在您的应用中使用大量功能检测)包括 Modernizr 并正确使用它,而不是仅仅从它的源头获取想法!

关于javascript - 检测对 HTML5 iframe 沙盒属性的支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13399415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com