0
我看到這個劇本從嵌入的YouTube網站上的自動靜音視頻的刪除YouTube上的相關視頻:在這個腳本
How do I automatically play a Youtube video (IFrame API) muted?
的代碼可以在小提琴:
但是我想知道要添加到此代碼中以防止出現相關視頻?
感謝 阿扎姆
我看到這個劇本從嵌入的YouTube網站上的自動靜音視頻的刪除YouTube上的相關視頻:在這個腳本
How do I automatically play a Youtube video (IFrame API) muted?
的代碼可以在小提琴:
但是我想知道要添加到此代碼中以防止出現相關視頻?
感謝 阿扎姆
在你的情況,所有需要的是增加'rel': 0
到參數,就像這樣:
function onYouTubePlayerAPIReady() {
player = new YT.Player('player', {
playerVars: {
'autoplay': 1,
'controls': 1,
'autohide': 1,
'wmode': 'opaque',
'rel': 0
},
videoId: 'JW5meKfy3fY',
events: { 'onReady': onPlayerReady }
});
}
您可能也有興趣在可用參數的完整列表對於YouTube iframe
API,在這裏找到:https://developers.google.com/youtube/player_parameters#Parameters
對不起,但這是非常讚賞 – Azzam 2014-01-05 18:43:18
FYI,最好的方式來顯示appre ciation是通過接受答案! = P – Skywalkar 2014-06-24 18:10:51
哦,我該怎麼做? 編輯:明白了:) – Azzam 2014-06-25 23:20:28