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>

相关文章:

  • 2021-09-18
  • 2021-10-31
  • 2021-11-01
  • 2021-11-07
  • 2021-12-29
  • 2022-12-23
猜你喜欢
  • 2021-12-07
  • 2021-07-20
  • 2021-09-10
  • 2022-12-23
  • 2021-12-16
  • 2022-02-19
  • 2021-10-25
相关资源
相似解决方案