我希望在SSL(https :)加密页面中嵌入带有非SSL(http :)视频内容的iframe。这会导致错误 - 鉴于浏览器希望确保SSL证书合规性,这是可以理解的。
有没有办法让浏览器加载页面内的内容?
我尝试使用外部内容链接到目标_blank,这样可行,但却提供了糟糕的用户体验。
以下代码适用于http://但不适用于https://
<div class="video-player">
<iframe width="100%" height="100%" src="http://stage.player.sky.com/?videoId=clip-005gqnuu"
frameborder="0" scrolling="no" allowfullscreen="" webkitallowfullscreen=""
mozallowfullscreen="" oallowfullscreen="" msallowfullscreen="">
</iframe>
</div>
将i-frame URL强制为https://,如下所示:
src="http://stage.player.sky.com/?videoId=clip-005gqnuu"
不起作用。
是否有任何选项可以让非SSL内容在SSL页面中运行?