我正在尝试使用HTML iframe在我的网页和Blogspot页面上显示YouTube视频。
<iframe width="320" height="250" src="http://youtube.com/watch?v=Y4lqtiYLuJU"></iframe>
但它给了我以下禁止的错误:
This website does not permit its contents to be displayed in a frame, it must be opened in a new window.
将此iframe代码发布到我的Blogspot页面时,我在Blogspot上收到同样的错误。
有什么方法可以解决这个问题吗?
答案 0 :(得分:1)
YouTube iframe通过HTTPS工作
<iframe width="320" height="250"
src="https://www.youtube.com/embed/Y4lqtiYLuJU">
</iframe>