我们在添加YouTube视频的时候,这些视频都会只播放一次,如果想多次播放还需要在重新点击播放按钮。设置YouTube视频循环播放需要将一下代码做如下设置:

    修改前:

    <iframe width="640" height="360" src="https://www.youtube.com/embed/eXHqx9t6LsM?rel=0&amp;controls=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>

    修改后:

    <iframe width="640" height="360" src="https://www.youtube.com/embed/eXHqx9t6LsM?rel=0&amp;controls=0&amp;playlist=eXHqx9t6LsM&amp;autoplay=1&amp;loop=1&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>

    这样修改以后,YouTube视频就可以循环播放。