function onYouTubeIframeAPIReady() {
alert("onYouTubeIframeAPIReady Fired"); //This works
player = new YT.Player('player', {
//height: '390',
//width: '640',
videoId: buni_php_params.videoId,
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
}
// 4. The API will call this function when the video player is ready.
function onPlayerReady(event) {
alert("onPlayerReady Fired"); // This doesn't
event.target.playVideo();
}
視頻加載和播放。`onReady` not firing
http://wppagoda.pagodabox.com/?p=1
我有一個標準的WordPress安裝一個插件我做,它將從數據庫(buni_php_params.videoId
)一個視頻ID和播放。但事件onPlayerReady從未被解僱......即使onYouTubeIframeAPIReady
被解僱。
好吧,這很奇怪,我只是打開它在一個私人標籤,它的工作原理!我不知道爲什麼或如何... – laggingreflex
清除您的緩存。如果您使用的是Chrome,則可以在調試器設置中禁用緩存。 – Joseph