Youtube嵌入iframe - 事件不在本地发射

时间:2013-12-10 19:25:59

标签: javascript youtube youtube-api

我刚刚注意到,当我在本地测试时,Youtube事件(onReady,onStateChange)不再触发,但在我将代码上传到JsFiddle时有效。我决定复制并粘贴来自Youtube Player API的代码,我可以验证它确实无效。还有其他人有这个问题吗? Chrome,Firefox,IE,Safari和Opera会出现此问题。

编辑 - 当我在本地console.log(player);时,我发现它缺少很多Youtube功能,例如seekTo()setVolume()showVideoInfo()的jsfiddle。我不确定为什么会这样,但我相信这可能是我问题的根源。有什么想法吗?

http://jsfiddle.net/8ZmKx/

<!DOCTYPE html>
<html>
  <body>
    <!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
    <div id="player"></div>

    <script>
      // 2. This code loads the IFrame Player API code asynchronously.
      var tag = document.createElement('script');

      tag.src = "https://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.
      var player;
      function onYouTubeIframeAPIReady() {
        player = new YT.Player('player', {
          height: '190',
          width: '140',
          videoId: 'M7lc1UVf-VE',
          events: {
            'onReady': onPlayerReady,
            'onStateChange': onPlayerStateChange
          }
        });
      }

      // 4. The API will call this function when the video player is ready.
      function onPlayerReady(event) {
        console.log('ready');
        event.target.playVideo();
      }

      // 5. The API calls this function when the player's state changes.
      //    The function indicates that when playing a video (state=1),
      //    the player should play for six seconds and then stop.
      var done = false;
      function onPlayerStateChange(event) {
        console.log('change');
        if (event.data == YT.PlayerState.PLAYING && !done) {
          setTimeout(stopVideo, 6000);
          done = true;
        }
      }
      function stopVideo() {
        player.stopVideo();
      }
    </script>
  </body>
</html>

2 个答案:

答案 0 :(得分:4)

看来Youtube iframe API目前已被破坏,但我还没有看到官方确认。

另见:

onReady callback not firing when having the iframe explicitly written inside a template

YouTube API onPlayerReady not firing

修改:以下是修复:https://code.google.com/p/gdata-issues/issues/detail?id=5670#c6

以下是上述链接中答案的直接引用:

  

快速解决方法是在origin = http://www.example.com中添加(替换   与您的服务器完整域;确保使用http://或https://   适合您的网站)到播放器的src =属性   iframe元素。请确保origin = attribute的值   与主机域和URL方案完全匹配。 E.g。

<iframe
  type="text/html"
  width="640"
  height="480"
  src="https://www.youtube.com/embed/VIDEO_ID?enablejsapi=1&origin=https://www.example.com"
  frameborder="0">
</iframe>
  

我目前正在与工程团队合作,以确定是否   origin =将要求前进或是否这是新的   需求可以恢复,但这是立即修复。道歉   因为在此期间破损和缺乏先进的沟通。

     

如果使用YT.Player()构造函数来创建iframe元素   对你来说,这不是一个问题 - 这是一个有点边缘的情况   明确包含iframe元素的开发人员   他们的页面的HTML。

我实施了上面的修复程序,它对我有用。

答案 1 :(得分:0)

我已经修改了一个实现“origin =”参数的修复程序,修复了原始错误并触发了状态更改事件。

现在原点参数导致错误。删除了参数,它再次起作用。