如何使embedded的Youtubevideo自动开始播放?

在我的项目中,有一个video库模块。 在这个模块中,有两个select:直接FLV上传,并添加来自YouTube的videoembedded代码。

我正在写一个div元素的embedded代码(实际上,embedded代码来自数据库)。 我想让这个video自动播放。

<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI" frameborder="0" allowfullscreen></iframe> 

这是一个来自YouTube的示例embedded代码。 我想使用JavaScript自动播放这个video。

你必须使用

 <iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI?autoplay=1" frameborder="0" allowfullscreen></iframe> 

?autoplay=1

并不是

&autoplay=1

它的第一个URL参数,所以它添加了一个?

这对我完美的作品尝试这个只是把?rel = 0&autoplay = 1在链接的结尾

 <iframe width="631" height="466" src="https://www.youtube.com/embed/UUdMixCYeTA?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe> 
 <iframe title='YouTube video player' class='youtube-player' type='text/html' width='030' height='030' src='http://www.youtube.com/embed/ZFo8b9DbcMM?rel=0&border=&autoplay=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' frameborder='0'></iframe> 

只需在embedded后插入你的代码/

&autoplay = 1添加到您的语法中,如下所示

 <iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI&amp;autoplay=1" frameborder="0" allowfullscreen></iframe>