如何在禁用JavaScript的情况下在iframe中加载页面?

时间:2017-12-20 13:58:45

标签: javascript html iframe

我在互联网上搜索了这个主题但我没有找到任何相关信息。请指导我怎么可能?

例如:

<iframe id="iframe1"
        src="Source Link"
        width="890"
        height="640"
        frameborder="0"
        scrolling="no"
        allowfullscreen></iframe>

1 个答案:

答案 0 :(得分:2)

您正在寻找sandbox属性。

在您的特定情况下使用:

<iframe id="iframe1"
        src="Source Link"
        width="890"
        height="640"
        frameborder="0"
        scrolling="no"
        allowfullscreen
        sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-top-navigation"></iframe>

这会重新启用除Javascript以外的所有iframe功能。