播放youtube视频后无法正确设置相关视频
Cant set related videos correctly after youtube video is played
我想在播放 youtube 电影后将推荐视频设置为该频道的视频,但我写错了。
这是我的 iframe 逻辑:
<iframe
src="https://www.youtube.com/embed/VIDEO_ID?listType=user_uploads&list=CHANNEL_ID?autoplay=1"
></iframe>
这是真正的代码:
<iframe
src="https://www.youtube.com/embed/LKKQpX5ucGk?listType=user_uploads&list=UC-k6oG4r4vQjeoMZlEHzQmw?autoplay=1"
></iframe>
您可以通过将 rel=0
添加到您的 src
来限制相关视频来自同一频道
下面有你想要的效果
<iframe width="560" height="315" src="https://www.youtube.com/embed/boPZ_0E6X6s?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
我想在播放 youtube 电影后将推荐视频设置为该频道的视频,但我写错了。 这是我的 iframe 逻辑:
<iframe
src="https://www.youtube.com/embed/VIDEO_ID?listType=user_uploads&list=CHANNEL_ID?autoplay=1"
></iframe>
这是真正的代码:
<iframe
src="https://www.youtube.com/embed/LKKQpX5ucGk?listType=user_uploads&list=UC-k6oG4r4vQjeoMZlEHzQmw?autoplay=1"
></iframe>
您可以通过将 rel=0
添加到您的 src
下面有你想要的效果
<iframe width="560" height="315" src="https://www.youtube.com/embed/boPZ_0E6X6s?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>