我決定嘗試使用Youtube-Api在我的網頁上添加YouTube視頻。我的想法是將視頻放置在一個滑塊內,並用此方法創建一個「播放列表」。我的第一個問題是,我想建立多玩家的YouTube API,但我如何當玩家被定義爲「YouTube播放器」不知道:爲多個玩家定義一個Youtube-Player API
<script>
// Load the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/player_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// Replace the 'ytplayer' element with an <iframe> and
// YouTube player after the API code downloads.
var player;
function onYouTubePlayerAPIReady() {
player = new YT.Player('ytplayer1', {
height: '390',
width: '640',
//videoId: 'M7lc1UVf-VE'
});
}
</script>
有沒有什麼辦法來定義「 ytplayer「爲多個球員將被命名爲; ytplayer1,ytplayer2,....究其原因是什麼IAM問這個問題,我想給玩家放置標籤內,也叫div標籤中的「視頻ID」,在某種程度上是這樣的:
<div id="ytplayer1" src="M7lc1UVf-VE"></div>
高於甚至有可能的解決方案「與一些課程的變化「?將玩家置於其中並從那裏撥打視頻ID?
Iam新的這些腳本,所以任何幫助將是偉大的。我搜查了網絡,但沒有找到任何相關的答案來解決我的問題。
牛逼