iframe####
如果没有flash播放器,会自动使用html5播放器
<iframe width="420" height="315"
src="http://www.youtube.com/embed/XGSy3_Czz8k">
</iframe>
object####
在无法使用iframe的情况下使用,
<object width="420" height="315"
data="http://www.youtube.com/v/XGSy3_Czz8k">
</object>
embed####
不是标准
<embed width="420" height="315"
src="http://www.youtube.com/v/XGSy3_Czz8k">
html5####
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>