无法将网站放入iframe

时间:2015-03-14 15:41:53

标签: html iframe

我正在尝试将g2a.com网站放在iframe中,但它不起作用。当我将下面的代码插入我的html文件g2a网站时,它打开全屏,我在地址栏中有g2a.com。它正在与我尝试的任何其他网站合作,因此它必须是关于g2a.com的特定内容。任何人都知道如何使其与iframe一起使用?

<iframe src="https://www.g2a.com/" width="50%" height="50%" frameborder="0" marginheight="0" marginwidth="0">
    <p>Click <a href="https://www.g2a.com/">here</a>! (Your browser does not support iframes)</p>
</iframe>

1 个答案:

答案 0 :(得分:1)

g2a.com使用framebraker,以避免在iframe中使用此网站。

你仍然可以添加

sandbox="allow-scripts"
在你的例子中

<iframe src="https://www.g2a.com/" sandbox="allow-scripts" width="50%" height="50%" frameborder="0" marginheight="0" marginwidth="0">
        <p>Click <a href="https://www.g2a.com/">here</a>! (Your browser does not support iframes)</p>
    </iframe>

到您的iframe,适用于大多数较新的浏览器。这禁止框架中的网站可以影响主窗口。