0

我有一个嵌入在 html 页面中的 youtube 播放器,我需要在页面加载时播放它,并且由于我有一个删除播放器的按钮,我需要 wmode=transparent 以便我可以将元素放置在它上面。

这是我使用的播放器的代码:

<iframe width="560" height="235" src="http://www.youtube.com/embed/vUd6TpdFLl4?autoplay=1?wmode=transparent" frameborder="0" allowfullscreen></iframe>

如果我只使用其中一个,它们工作正常,但如果我把它们放在一起,它们都不起作用。

任何想法我做错了什么?

4

1 回答 1

3

url 查询字符串的正确语法是这样的:

<iframe width="560" height="235" src="http://www.youtube.com/embed/vUd6TpdFLl4?autoplay=1&amp;wmode=transparent" frameborder="0" allowfullscreen></iframe>

?您正在使用而不是添加第二个参数&amp;

于 2012-09-14T12:18:14.077 回答