youtube iframe events

后端 未结 4 1533
死守一世寂寞
死守一世寂寞 2021-01-14 07:12

I try to catch the events of a youtube iframe: http://lab.joergpfeiffer.de/videofull/youtube.php

So I call first the api



        
相关标签:
4条回答
  • 2021-01-14 07:49

    I did the following.

    Started with the example code found at https://developers.google.com/youtube/iframe_api_reference#Loading_a_Video_Player

    I then replaced:

    <div id="player"></div>
    

    with

    <iframe id="player" type="text/html" width="640" height="390"
      src="http://www.youtube.com/embed/M7lc1UVf-VE?enablejsapi=1&origin=http://example.com"
      frameborder="0">
    </iframe>
    

    (iframe markup found at the same URL)

    Then I got rid of the origin parameter in the above - that seemed to make things work. BTW, I found that step 2 can be replaced by markup:

    <script src="https://www.youtube.com/iframe_api"></script>
    
    0 讨论(0)
  • 2021-01-14 07:57

    Execute these routines before onYouTubePlayerAPIReady()

    // This code loads the IFrame Player API code asynchronously.
    var tag = document.createElement('script');
    tag.src = "http://www.youtube.com/player_api";
    var firstScriptTag = document.getElementsByTagName('script')[0];
    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
    

    if stil have confusion then visit http://code.google.com/apis/youtube/iframe_api_reference.html

    0 讨论(0)
  • 2021-01-14 08:01

    Adeel's answer should fix your problem.

    Google recommend you load the player API script asynchronously, ie, letting the rest of your page load while the script is simultaneously loading.

    Because you're placing the script tag in your markup early on, the rest of the page isn't executed until that script has been loaded. So when the call is made to onYouTubePlayerAPIReady(), your function hasn't yet been defined.

    0 讨论(0)
  • 2021-01-14 08:11

    I have the same problem. It seems to relate to putting the iframe in manually instead of using the div tag substitution. If I use the div method it works fine, manual iframe, no.

    Async load of the API script, or including it in the head manually didn't make any difference.

    I have just gone with the div substitution for now, and stopped fighting it.

    0 讨论(0)
提交回复
热议问题