如何从html的YouTube嵌入式iframe代码中删除相关视频?

时间:2018-11-26 12:06:05

标签: javascript iframe youtube

我面临一个问题,当我在给定iframe中使用youtube嵌入式代码时,它会显示相关视频,并且我想从iframe中隐藏相关视频栏吗?

那么有什么办法可以隐藏相关视频?

请参阅下面的图片和代码:

<iframe 
id="ytplayer" 
type="text/html" 
width="720" 
height="405"
src="https://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&controls=0&disablekb=1&fs=0&modestbranding=1&iv_load_policy=3";
frameborder="0" 
allowfullscreen>

enter image description here 另外,我也使用了以下代码。但它仍显示更多视频链接。

<iframe 
id="ytplayer" 
type="text/html" 
width="720" 
height="405"
src="https://www.youtube.com/embed/M7lc1UVf-VE?rel=0";
frameborder="0" 
allowfullscreen>

2 个答案:

答案 0 :(得分:0)

您必须使用'?'在向网址添加参数时。使用以下命令更新src

"https://www.youtube.com/embed/M7lc1UVf-VE?rel=0"

答案 1 :(得分:0)

您可以使用

用CSS隐藏它
.html5-endscreen{
display: none !important;
}