web-dev-qa-db-ja.com

クリックでYouTubeビデオを再生

私はYoutube APIを使用しており、サムネイルとしていくつかのDivがあります。 1つのサムネイル(div)をクリックすると、対応するYoutubeビデオが再生されます。私はビデオにiframe要素を使用しており、WebページはHTML、CSS、JavaScriptのみで構成されています。ボタン(onclick付きのサムネイル/ div)を使用せず、Youtube API JavaScriptコードを含む空白のページがある場合は、機能します。ただし、(divのonclickからの)関数呼び出し内にすべてをラップしようとすると、何も起こりませんが、このエラーが発生します。

「 ' https://www.youtube.com/embed/HVldRjNb4BE 'からのスクリプトの実行は拒否されました。MIMEタイプ( 'text/html')が実行可能ではなく、厳密なMIMEタイプチェックが有効になっているためです」

これが私のコードです:

HTML:

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

JavaScript:

// 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: '390',
      width: '640',
      videoId: 'M7lc1UVf-VE',
      events: {
        'onReady': onPlayerReady,
        'onStateChange': onPlayerStateChange
      }
    });
  }

  // 4. The API will call this function when the video player is ready.
  function onPlayerReady(event) {
    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) {
    if (event.data == YT.PlayerState.PLAYING && !done) {
      //setTimeout(stopVideo, 6000);
      done = true;
    }
  }
  function stopVideo() {
    player.stopVideo();
  }

このコードは https://developers.google.com/youtube/iframe_api_reference からコピーされます。

これがドキュメント内にあるすべての場合、ページが読み込まれるとプレーヤーが存在し、ビデオを再生する準備ができています。私の質問を明確にするために、ユーザーがボタン(div)の1つをクリックしたときに、YouTubeプレーヤーがビデオを表示して再生するようにするにはどうすればよいですか?

6
Fred

こんにちは私はこれがあなたを助けると思います:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Play Youtube Video On Click</title>
    </head>
    <body>
        <button onclick="myFunction();return false;">Click me</button>
        <div id="video"></div>

        <script>
            function myFunction() {
                document.getElementById("video").innerHTML = "<div id='player'></div>";

                // 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: '390',
                    width: '640',
                    videoId: 'M7lc1UVf-VE',
                    events: {
                        'onReady': onPlayerReady,
                        'onStateChange': onPlayerStateChange
                    }
                });
            }

            // 4. The API will call this function when the video player is ready.
            function onPlayerReady(event) {
                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) {
                if (event.data == YT.PlayerState.PLAYING && !done) {
                    //setTimeout(stopVideo, 6000);
                    done = true;
                }
            }
            function stopVideo() {
                player.stopVideo();
            }
        </script>
    </body>
</html>
11
Amitesh Kumar