视频上传HTML5没有按预期方式上传到我的页面上

时间:2019-02-23 22:01:09

标签: html5

大家好,谁能告诉我为什么下面的视频没有上传到我的页面上?

<body>
    <p>Natural Mystic music video</p>
      <iframe width="420" height="315"
        src="https://www.youtube.com/watch?v=VkndVzfOeRc">
      </iframe> 
</body>

2 个答案:

答案 0 :(得分:1)

您需要使用嵌入表单(您可以在youtube视频上找到按分享),否则youtube会拒绝连接。

<body>
  <iframe width="420" height="315" src="https://www.youtube.com/embed/VkndVzfOeRc">
</iframe>
</body>

答案 1 :(得分:0)

对于以后遇到类似问题的人,请不要使用iframe代码,而应使用下面的格式,因为它现在可以使用:

    <object width="420" height="315"
        data="https://www.youtube.com/embed/VkndVzfOeRc">
    </object>

感谢所有尝试提供帮助的人。