0

在网站上发布 youtube 视频的最佳做法是使用 iframe 或嵌入标签

<iframe width="420" height="345"
src="http://www.youtube.com/embed/XGSy3_Czz8k">
</iframe> 

或者

<embed
width="420" height="345"
src="http://www.youtube.com/v/XGSy3_Czz8k"
type="application/x-shockwave-flash">
</embed>

我的问题是在网站上发布视频的最佳做法是什么......以及使用它们对性能有什么影响......

4

2 回答 2

1

新样式是<iframe>. 有关更多信息,请在此处查看此通知:

Please keep in mind, the mobile player cannot be embedded on external mobile sites.

于 2012-10-08T09:13:05.860 回答
-1

我认为使用嵌入标签总是安全的。在网站中使用 iframe 是漏洞的来源。iFrames 为黑客打开了窗口。对于嵌入标签,没有报告重大安全问题。

嵌入标签更有效,因为我们可以更有效地处理不同的情况,比如不支持播放器等...

于 2012-10-08T09:16:27.240 回答