在同一iframe上打开HTTPS网站

时间:2018-07-23 23:09:16

标签: javascript html iframe https hyperlink

我正在尝试使用链接来控制iframe中安全网站的导航,但该网站一直在新标签页或窗口中打开。它可以在不安全的网站上正常运行。这是我的代码:

<a href="#" onclick=window.open("https://www2.ecinteractiveplus.com/0463/Product/OND/VBD50BK/","iframe1");>Binders</a>
<a href="#" onclick=window.open("https://www2.ecinteractiveplus.com/0463/Product/UPG/BLU113/","iframe1");>Folders</a>

<iframe name="iframe1" src="https://www2.ecinteractiveplus.com/0463" style="min-height: 1100px;height:100%; min-width: 600px; width:100%;"></iframe>

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

这将起作用,只需确保从same origin加载iframe的javascript代码即可。

<a href="https://www2.ecinteractiveplus.com/0463/Product/OND/VBD50BK/" target="iframe1">Binders</a>
<a href="https://www2.ecinteractiveplus.com/0463/Product/UPG/BLU113/" target="iframe1">Folders</a>

<iframe name="iframe1" src="https://www2.ecinteractiveplus.com/0463" style="min-height: 1100px; height:100%; min-width: 600px; width:100%;"></iframe>