1

示例代码:

<div id="ytplayer"></div>
<a id="start" href="#">start</a>
<script>
  // Load the IFrame Player API code asynchronously.
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/player_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // Replace the 'ytplayer' element with an <iframe> and
  // YouTube player after the API code downloads.
  var player;
  function onYouTubePlayerAPIReady() {
    player = new YT.Player('ytplayer', {
      height: '390',
      width: '640',
      videoId: 'U6oKcAXiVlo',
      playerVars: { 'autoplay': 0, 'controls': 0, 'showinfo': 0 },
    });
  }

  document.getElementById("start").addEventListener("click", function () {
  player.playVideo();
  });
</script>

可重现的测试用例: http: //fiddle.jshell.net/3fpusLm5/show/

player 变量在范围内。但是对对象上应该可用的方法(例如 playVideo、pauseVideo)的调用不起作用。它说Object does not support this property or method

该代码适用于大多数现代浏览器。我确定播放器已经加载。我已经测试了 onReady 回调,还尝试等待 30 秒。

4

1 回答 1

0

其实IE已经给你答案了。我在 IE8 模式下测试了 IE9 上的链接并收到错误

对象不支持属性或方法“addEventListener”

真正的 IE8 只支持attachEvent

您可以检查此选项是否存在并设置正确的侦听器,或者添加一个将为您应用此选项的外部脚本,例如在addEventListener Polyfill中。

于 2014-08-26T15:58:52.553 回答