播放后如何重置 youtube 视频以停止推荐

How to reset you-tube video after playing to stop recommadations

我有一种情况。我正在使用嵌入代码在 iframe 中播放 you-tube 视频

<iframe width="940" height="552" src="//www.youtube.com/embed/ucXTSAUH2UE" frameborder="0" allowfullscreen></iframe>

现在,如果我们播放视频,当视频播放完毕时,它会在结尾显示推荐视频。有人可以建议我如何停止此建议并重新设置我的 you-tube 视频吗?

您只需将 ?rel=0 附加到 YouTube URL 的末尾即可在视频末尾禁用相关视频。

替换

<iframe width="940" height="552" src="//www.youtube.com/embed/ucXTSAUH2UE" frameborder="0" allowfullscreen></iframe>

<iframe width="940" height="552" src="//www.youtube.com/embed/ucXTSAUH2UE?rel=0" frameborder="0" allowfullscreen></iframe>