Youtube Iframe: onYouTubePlayerAPIReady() not called

后端 未结 2 1005
别那么骄傲
别那么骄傲 2021-02-08 10:42

I have a page with an iframe which load a youtube video (the src of iframe is modified in runtime). I based on code by Rob W provided in different answers on this topic

2条回答
  •  -上瘾入骨i
    2021-02-08 10:58

    onYouTubePlayerAPIReady should be on the window object.

    try:

    window.onYouTubePlayerAPIReady = function() {
            alert('called onYouTubePlayerAPIReady');
            ytIframeplayer = new YT.Player('browser', {
                 events: {
                    "onStateChange": stopCycle
                 }
        });
    }
    

提交回复
热议问题