zoukankan      html  css  js  c++  java
  • Js判断flash是否被禁用,如果禁用并开启flash

    <script>
        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();
        if(fls.f){
            alert(123456);
            document.write("您安装了flash,当前flash版本为: " + fls.v + ".x");
        }else {
            alert(76543);
            document.write("您没有安装flash");
        };
    
        if(fls.f){
    
            // liveType.ckplayer();
            alert("您安装了flash,当前flash版本为: " + fls.v + ".x");
        }else {
            //alert("您没有安装flash");
    
            alert('<a href="https://get.adobe.com/cn/flashplayer/"; class="flashLoadMsg" target="_blank">安装或者启用FLASH播放器</a>');
        };
    </script>

    开启flash

    <embed src="/images/zhansi.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1003" height="115">
  • 相关阅读:
    self 和 super 关键字
    NSString类
    函数和对象方法的区别
    求两个数是否互质及最大公约数
    TJU Problem 1644 Reverse Text
    TJU Problem 2520 Quicksum
    TJU Problem 2101 Bullseye
    TJU Problem 2548 Celebrity jeopardy
    poj 2586 Y2K Accounting Bug
    poj 2109 Power of Cryptography
  • 原文地址:https://www.cnblogs.com/wt645631686/p/9863855.html
Copyright © 2011-2022 走看看