function isChrome360() {
    if( navigator.userAgent.toLowerCase().indexOf('chrome') > -1 ) {
        var desc = navigator.mimeTypes['application/x-shockwave-flash'].description.toLowerCase();
        if( desc.indexOf('adobe') > -1 ) {
            return true;
        }
    }
    return false;
}
alert(isChrome360());

 

Posted on 2013-05-06 11:59  向民  阅读(294)  评论(0编辑  收藏  举报