在iframe中调用html页面

时间:2017-04-23 08:56:16

标签: html iframe

我需要从网站导入iframe,一个页面,但是如果我在本地尝试它,即使它向我显示googlr广告也能正常工作,但如果我去服务器上的互联网上看到它,它会根本不工作。

<iframe 
    name="principale" 
    src="http://www.adessoin.tv/index.php" 
    marginheight="50" 
    height="800" 
    width="100%" 
    allowfullscreen = "true" 
></iframe>

1 个答案:

答案 0 :(得分:0)

由于您通过HTTPS(在评论中提到)访问您的页面,因此您的浏览器会阻止与www.adessoin.tv的不安全连接。

您无法将iframe的网址更改为HTTPS,因为他们没有有效的证书。与他们交谈,也许可以说服有效的证书是一件好事。

可在此问题中找到更多信息:How to allow http content within an iframe on a https site