zoukankan      html  css  js  c++  java
  • javascript检测是否安装了flash

    检测是否安装了flash

    function flashChecker() {
        var hasFlash = 0; //是否安装了flash
        var flashVersion = 0; //flash版本
        if (document.all) {
          var swf = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
          if (swf) {
            hasFlash = 1;
            VSwf = swf.GetVariable("$version");
            flashVersion = parseInt(VSwf.split(" ")[1].split(",")[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"); 
  • 相关阅读:
    nproc 查看系统可用处理单元数
    c++内存泄露的坑
    内存泄露脚本
    c++内存问题(转)
    tmp
    kprobe
    内存对齐算法
    正则
    P3261 [JLOI2015]城池攻占有趣的做法
    CF1620C BAString题解
  • 原文地址:https://www.cnblogs.com/zhidong123/p/5754276.html
Copyright © 2011-2022 走看看