我有一个嵌入了youtube视频的页面。 playerVar自动播放设置为0.但是当页面加载时,API提供的iframe是
<iframe id="ytplayer" frameborder="0" allowfullscreen="1" allow="autoplay; encrypted-media" title="YouTube video player" width="533" height="400" src="https://www.youtube.com/embed/myVideo?autoplay=0&controls=1&fs=0&origin=https%3A%2F%2Fexample.com&showInfo=0&rel=0&enablejsapi=1&widgetid=1"></iframe>
注意&#34; allow =&#34;自动播放;为什么会这样?此外,视频会在某些浏览器/系统上自动播放,而不会在其他浏览器/系统上播放。
答案 0 :(得分:0)
您可以尝试从autoplay;
属性中移除allow
;)
<iframe id="ytplayer" frameborder="0" allowfullscreen="1" allow="encrypted-media" title="YouTube video player" width="533" height="400" src="https://www.youtube.com/embed/myVideo?autoplay=0&controls=1&fs=0&origin=https%3A%2F%2Fexample.com&showInfo=0&rel=0&enablejsapi=1&widgetid=1"></iframe