<iframe width="420" height="345" src="http://www.youtube.com/embed/cH6kxtzovew">
</iframe>
当我尝试通过http网站在iframe上加载youtube视频时,它已成功运行但是当我们在https网站上加载相同的iframe时,它会显示错误,例如
[已屏蔽]“https://www.google.co.in/_/chrome/newtab?espv=2&ie=UTF-8”页面是通过HTTPS加载的,但是运行了来自“http://www.youtube.com/embed/cH6kxtzovew”的不安全内容:此内容也应通过HTTPS加载。
请给出一些解决这个问题的建议,谢谢。
答案 0 :(得分:1)
您可以更改iframe中的网址来源,以通过https:
加载视频 <iframe width="420" height="345" src="https://www.youtube.com/embed/cH6kxtzovew">
</iframe>