1

我找到了将 youtube 链接放入 HTML 标记的解决方案,但它不起作用,视频不显示:

<video controls="controls" x-webkit-airplay="allow" class="video-stream" 
  src="http://youtu.be/8sUr5uBFInQ"></video>
4

1 回答 1

2

根据此博客,您需要不同的语法。

<iframe class="youtube-player" type="text/html" width="640" height="385" 
  src="http://www.youtube.com/embed/VIDEO_ID" allowfullscreen frameborder="0">
</iframe>
于 2013-03-02T01:46:23.163 回答