YouTube的控制watchlater這是我iframe
,我在我的HTML加載:如何隱藏在IFRAME
<iframe id="userGuideVideo" width="520" height="300" style="margin-left: 80px;margin-top: 7px;" src="about:blank"></iframe>
$('#userGuideVideo').attr('src','https://URL?enablejsapi=1');
YouTube的控制watchlater這是我iframe
,我在我的HTML加載:如何隱藏在IFRAME
<iframe id="userGuideVideo" width="520" height="300" style="margin-left: 80px;margin-top: 7px;" src="about:blank"></iframe>
$('#userGuideVideo').attr('src','https://URL?enablejsapi=1');
不知道,如果你已經得到了你的答案又或沒有。
但是你可以做的是,使用嵌入參數,例如:
<iframe id="userGuideVideo" width="520" height="300" style="margin-left: 80px;margin-top: 7px;" src="http://www.youtube.com/embed/YCDbiAhxJ4M?autoplay=1&controls=0&showinfo=0&ps=docs"></iframe>
有所有項目進行排序,你可以隱藏。
你可以找到完整的列表: https://developers.google.com/youtube/player_parameters?hl=en
我發現這個使用適度品牌= 1用於隱藏在YouTube控制Watchlater和rel = 0的解用來隱藏YouTube上的份額控制in iframe
例如。 ('#optionsPlayVideo')。attr('src','https://www.youtube.com/embed/tQ0DR9byov0?enablejsapi=1&rel=0&autohide=1&showinfo=0&modestbranding=1');
在我的iframe是
<iframe id="optionsPlayVideo" width="520" height="348" style="margin-left: 80px;margin-top: 7px;" src="about:blank"></iframe>
這個解決方案適用於我感謝
感謝@Rory McCrossan –