0

我有一个嵌入了 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&amp;controls=1&amp;fs=0&amp;origin=https%3A%2F%2Fexample.com&amp;showInfo=0&amp;rel=0&amp;enablejsapi=1&amp;widgetid=1"></iframe>

注意“允许=”自动播放;为什么会这样??此外,视频会在某些浏览器/系统上自动播放,而在其他浏览器/系统上则不会。

4

1 回答 1

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&amp;controls=1&amp;fs=0&amp;origin=https%3A%2F%2Fexample.com&amp;showInfo=0&amp;rel=0&amp;enablejsapi=1&amp;widgetid=1"></iframe
于 2018-06-09T22:58:05.147 回答