验证浏览器是否安装已flash插件的js脚本

function flashChecker() {
    var hasFlash = 0;     //是否安装了flash
    var flashVersion = 0;   //flash版本
    if(document.all) {
        try{
            var swf = new ActiveXObject('ShockwaveFlash.ShockwaveFlash.3');
             if(swf) {
                hasFlash = 1;
                VSwf = swf.GetVariable("$version");
                flashVersion = parseInt(VSwf.split(" ")[1].split(",")[0]);
            }
        }catch(e){
            hasFlash=0;
        }
    } else {
        if(navigator.plugins && navigator.plugins.length > 0) {
            var swf = navigator.plugins["Shockwave Flash"];
            if(swf) {
                hasFlash = 1;
                var words = swf.description.split(" ");
                for(var i = 0; i < words.length; ++i) {
                    if(isNaN(parseInt(words[i]))) continue;
                    flashVersion = parseInt(words[i]);
                }
            }
        }
    }
    return {
        f: hasFlash,
        v: flashVersion
    };
}
  

  var fls = flashChecker();
var s = "";
if(fls.f) document.write("您安装了flash,当前flash版本为: " + fls.v + ".x");
else document.write("您没有安装flash");

这个方法可以检验火狐,和ie等浏览器是否已安装flash插件问题

posted on 2013-12-28 09:50  Lei1990  阅读(299)  评论(0编辑  收藏  举报

导航