视频上传HTML5未按预期上传到我的网页上

问题描述 投票:0回答:2

大家好,有人可以告诉我为什么以下视频没有在我的页面上传?

<body>
    <p>Natural Mystic music video</p>
      <iframe width="420" height="315"
        src="https://www.youtube.com/watch?v=VkndVzfOeRc">
      </iframe> 
</body>
html5
2个回答
1
投票

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

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

0
投票

对于将来有类似问题的用户,请不要使用iframe标签,而是使用以下格式,因为它现在可以使用:

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

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

© www.soinside.com 2019 - 2024. All rights reserved.