我想使用 YT.Player 代码来检测事件。我有一个带有 Youtube 视频 ID 的 CSV 文件和一个将 ID 放入数组中的函数,并且希望能够在用户单击图像时动态更改 ID。基本上是这样的:
html
<!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
<div id="player"></div>
javascript
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "//www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
// NOTE: videoId is taken out and instead is placed as the generated IFRAME src from the postSelection function
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '100%',
width: '100%',
videoId: '<<CALL TO FUNCTION OR VARIABLE HERE>>',
events: {
//'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
}
如果您熟悉此代码,那么会发生#player
DIV 被 IFRAME 替换。我可以使用此功能更改 IFRAME 源:
function postSelection() {
$("#player").attr("src", _selected.attributes.url); //_selected.attributes.url comes from the CVS file
}
但这非常有问题,而且对跨浏览器不友好。如果我使用标准 IFRAME 而不是 YT Player API,那么一切正常。但我想检测结束,暂停等等,所以我必须使用 API。我的猜测是,这是一个状态问题,并且在创建 IFRAME 的过程中丢失了持久性。
问候。