我正在使用JW Player制作YouTube视频的网站。它在Chrome和FireFox中运行良好,但只是不能在IE中加载皮肤。该视频使用YouTube播放器播放,但它没有任何控件。
即使在最基本的设置中,它仍然无效,例如下面的例子。我正在使用专业版帐户,JW播放器的完整版本是6.11.4923。
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://jwpsrv.com/library/127baEpAEeSLmSIAC0WXxA.js"></script>
</head>
<body>
<div id='video'></div>
<script type='text/javascript'>
jwplayer('video').setup({
file: '//www.youtube.com/watch?v=aqz-KE-bpKQ',
skin: 'beelden'
});
</script>
</body>
</html>
我在控制台中也收到错误,截图如下:
> Error handling "jwplayerMediaLevelChanged" event listener [0]:
> TypeError: Cannot read property 'length' of undefined function
任何帮助都会很棒,谢谢。