码迷,mamicode.com
首页 > Web开发 > 详细

JS 判断浏览器是否安装Flash 兼容IE、firefox

时间:2014-11-14 19:44:07      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   sp   java   div   log   cti   bs   

var isIE = !-[1,];
if(isIE){
    try{
        var swf1 = new ActiveXObject(‘ShockwaveFlash.ShockwaveFlash‘);
        alert(‘安装了Flash‘);
    }
    catch(e){
        alert(‘没有安装Flash‘);
    }
}
else {
    try{
        var swf2 = navigator.plugins[‘Shockwave Flash‘];
        if(swf2 == undefined){
            alert(‘没有安装Flash‘);
        }
        else {
            alert(‘安装了Flash‘);
        }
    }
    catch(e){
        alert(‘没有安装Flash‘);
    }
}

 

其他参考地址:https://github.com/AlloyTeam/JM/blob/master/src/jm.browser.js

JS 判断浏览器是否安装Flash 兼容IE、firefox

标签:blog   http   ar   sp   java   div   log   cti   bs   

原文地址:http://www.cnblogs.com/vivijs/p/4097900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!