标签: youtube-api youtube-javascript-api youtube-iframe-api
从Youtube iFrame API文档中,似乎有两种不同的方式来自动播放视频。单向运行或影响Youtube播放器的方式是否与另一种不同?
方法1:在定义新的Youtube播放器时,在播放器选项中将autoplay参数设置为“1”。
autoplay
方法2:等到'onReady'事件触发,然后执行event.target.playVideo()。具体做法是:
function onPlayerReady(event) { event.target.playVideo(); }