Internet explorer IE 8不渲染SoundCloud Flash播放器

Internet explorer IE 8不渲染SoundCloud Flash播放器,internet-explorer,soundcloud,Internet Explorer,Soundcloud,目标:使用SoundCloud中的自定义播放器文件创建自定义音频播放器http://developers.soundcloud.com/docs/custom-player. 问题:IE无法在IE8及更低版本中渲染备份flash播放器。我想避免所有的闪光在一起。播放器位于以下位置: IE 8给出了一个错误,该错误源于在sc-player.js中使用addEventListener而不是attachEvent。我对JavaScript的了解有限,所以这里还有一个问题:这个问题是否可以通过修改sc

目标:使用SoundCloud中的自定义播放器文件创建自定义音频播放器http://developers.soundcloud.com/docs/custom-player.

问题:IE无法在IE8及更低版本中渲染备份flash播放器。我想避免所有的闪光在一起。播放器位于以下位置:

IE 8给出了一个错误,该错误源于在sc-player.js中使用addEventListener而不是attachEvent。我对JavaScript的了解有限,所以这里还有一个问题:这个问题是否可以通过修改sc-player.js来解决?确定浏览器可以使用并实现的方法?通过github访问sc-player.jshttps://github.com/soundcloud/soundcloud-custom-player/blob/master/js/sc-player.js


任何建议都将不胜感激。谢谢。

如果您在sc-player.js之前执行此操作,它可能会工作:

if (!soundcloud.addEventListener) {
    soundcloud.addEventListener = function(eventName, eventHandler) {
      this.attachEvent('on' + eventName, eventHandler);
    }
}

如果您在sc-player.js之前执行此操作,它可能会起作用:

if (!soundcloud.addEventListener) {
    soundcloud.addEventListener = function(eventName, eventHandler) {
      this.attachEvent('on' + eventName, eventHandler);
    }
}