大家好,有人可以告诉我为什么以下视频没有在我的页面上传?
<body>
<p>Natural Mystic music video</p>
<iframe width="420" height="315"
src="https://www.youtube.com/watch?v=VkndVzfOeRc">
</iframe>
</body>
您需要使用嵌入表单(您可以在youtube视频上找到按下共享),否则youtube将拒绝连接。
<body>
<iframe width="420" height="315" src="https://www.youtube.com/embed/VkndVzfOeRc">
</iframe>
</body>
对于将来有类似问题的用户,请不要使用iframe标签,而是使用以下格式,因为它现在可以使用:
<object width="420" height="315"
data="https://www.youtube.com/embed/VkndVzfOeRc">
</object>
感谢所有试图提供帮助的人。