Internet explorer 8 JWPlayer的IE 8/9问题

Internet explorer 8 JWPlayer的IE 8/9问题,internet-explorer-8,mootools,internet-explorer-9,jwplayer,Internet Explorer 8,Mootools,Internet Explorer 9,Jwplayer,我有一个为safari/chrome/ffox播放视频的灯箱,但不是ie8/ie9 var preload = jwplayer('mb_inline_0_-1').setup({ 'flashplayer': '/scripts/jwplayer/player.swf', 'file': 'test.mov', 'streame

我有一个为safari/chrome/ffox播放视频的灯箱,但不是ie8/ie9

            var preload = jwplayer('mb_inline_0_-1').setup({
                        'flashplayer': '/scripts/jwplayer/player.swf',
                        'file': 'test.mov',
                        'streamer': 'rtmp://etc.mysite.com.au/cfx/st',
                        'controlbar': 'bottom',
                        'width': '470',
                        'height': '290'
                    });
在IE控制台中使用开发者工具时,我看到的错误是“LOG:找不到合适的玩家”,这让我相信内容类型和IE之间存在一定的兼容性。我已经到处寻找关于这方面的信息,但到目前为止没有运气


解决:有点愚蠢的举动。。ie8中未安装flash插件IE9也支持html5播放器,因此您只需提供另一种模式,例如:

jwplayer('player').setup({
    'modes': [
        {type: 'html5'},
        {type: 'flash', src: 'js/player/player.swf'}
    ],
    'id':'player',
    'width':'300',
    'height':'20',
    'controlbar':'bottom'
});

感谢添加您的解决方案!我只是有同样愚蠢的举动,甚至没有想过检查是否安装了闪存!