gpt4 book ai didi

html - youtube html 视频集成

转载 作者:行者123 更新时间:2023-12-03 06:28:58 24 4
gpt4 key购买 nike

我的网页有一点问题:当我尝试加载 youtube 视频时,它显示一个白色矩形(我在 Firefox 上使用 win 8.1 x 64,是的,我更新了 Flash 播放器)
这是代码:

<object type="application/x-shockwave-flash" width="800"   height="600"data="https://www.youtube.com/watch?v=jRXQsQKGqIU"><param name="movie" value="https://www.youtube.com/watch?v=jRXQsQKGqIU" /></object>

有人可以告诉我它有什么问题吗?
HTML 代码的其他部分很好,但是这个 youtube 代码一直在我的网页中显示这个白色矩形而不是视频。

最佳答案

根据 Google 的说法,嵌入的最佳方式是使用 iframe:

Best practice: IFrame embeds are the recommended method for embedding a YouTube player because the IFrame will select the appropriate player based on the client's capabilities and available YouTube file formats.



看起来像这样:
<iframe width="420" height="315" src="//www.youtube.com/embed/jRXQsQKGqIU" frameborder="0" allowfullscreen></iframe>

但是,如果您希望使用 Object 标签,这里有一个工作示例:
<object width="640" height="390">
<param name="movie"
value="https://www.youtube.com/v/jRXQsQKGqIU?version=3&autoplay=1"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="https://www.youtube.com/v/M7lc1UVf-VE?version=3&autoplay=1"
type="application/x-shockwave-flash"
allowscriptaccess="always"
width="640" height="390"></embed>
</object>

工作 JS fiddle : http://jsfiddle.net/RAZC4/2/

https://developers.google.com/youtube/player_parameters

关于html - youtube html 视频集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22388150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com