js判断flashplayer是否已安装,并显示flash player版本

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Complex DataGrid - jQuery EasyUI Demo</title>
    <link rel="stylesheet" type="text/css"
          href="http://www.jeasyui.com/easyui/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css"
          href="http://www.jeasyui.com/easyui/themes/icon.css">
    <script type="text/javascript"
            src="http://code.jquery.com/jquery-1.6.min.js"></script>
    <script type="text/javascript"
            src="http://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
   <!-- <script type="text/javascript">
        $(function(){
            $('#dg').datagrid({
                title:'My DataGrid',
                iconCls:'icon-save',
                width:700,
                height:350,
                nowrap: true,
                autoRowHeight: false,
                striped: true,
                collapsible:true,
                url:'1.json',
                sortName: 'code',
                sortOrder: 'desc',
                remoteSort: false,
                pagination:true,
                rownumbers:true
            });
            var p = $('#dg').datagrid('getPager');
            $(p).pagination({
                onBeforeRefresh:function(){
                    alert('before refresh');
                }
            });
        });
    </script>-->
    <script type="text/javascript">


        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};
        }
        $(function(){
            var fls=flashChecker();
            var s="";
            if(fls.f) document.write("您安装了flash,当前flash版本为: "+fls.v+".x");
            else document.write("您没有安装flash");
        });




    </script>
</head>
<body id="left">
<!--<table id="dg" title="公共资源" class="easyui-datagrid"
       style="width:700px;height:250px"


       toolbar="#toolbar" pagination="true"
       fitColumns="true" singleSelect="true">
    <thead>
    <tr>
        <th field="code" width="50">code</th>
        <th field="name" width="50">name</th>
        <th field="phone" width="50">phone</th>
    </tr>
    </thead>
</table>-->


</body>




</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值