我将使用以下代码将YouTube视频嵌入HTML中

<iframe width="560" height="315"
src="https://www.youtube.com/embed/7MqMyoxMaW4?controls=0&modestbranding=0" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

我正在尝试隐藏/禁用视频内的上下文菜单。避免复制视频链接。

我正在查看API文档,但仍然找不到结果。

如何做到这一点?

小提琴链接:https://jsfiddle.net/us9rev0b/

最佳答案

这是一种补丁,但是我们可以通过遵循纯JavaScript来隐藏它

如需隐藏,请稍后观看

document.getElementsByClassName("ytp-watch-later-button ytp-button ytp-show-watch-later-title")[0].style.display = 'none'

用于共享按钮
document.getElementsByClassName("ytp-button ytp-share-button ytp-share-button-visible ytp-show-share-title")[0].style.display = 'none'

07-26 05:10