我已将来自github的 soundcloud 的自定义 HTML 5 播放器安装到我的网站上以进行测试。我注意到这个播放器在火狐浏览器中不起作用。我收到以下错误
TypeError: $.browser is undefined
if ($.browser.msie) {
return '<object height="100%" width="100%" id="' + engineId + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" data="' + swf + '">'+
'<param name="movie" value="' + swf + '" />'+
'<param name="allowscriptaccess" value="always" />'+
'</object>';
} else {
return '<object height="100%" width="100%" id="' + engineId + '">'+
'<embed allowscriptaccess="always" height="100%" width="100%" src="' + swf + '" type="application/x-shockwave-flash" name="' + engineId + '" />'+'</object>';
}
};
Firefox 需要 Flash 播放器吗?有没有人遇到过这个问题?