我在互联网上搜索了这个主题但我没有找到任何相关信息。请指导我怎么可能?
例如:
<iframe id="iframe1"
src="Source Link"
width="890"
height="640"
frameborder="0"
scrolling="no"
allowfullscreen></iframe>
答案 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
功能。