flex输出在IE提示:Alternate HTML content should be placed here. This content requires the Adobe Flash Player

来源:互联网 发布:电驴软件下载 编辑:程序博客网 时间:2024/06/03 13:29

在flex输出的时候,在IE上提示:Alternate HTML content should be placed here. This content requires the Adobe Flash Player,查找了网上的时候,有中说法是fp的版本过低,但是去官网上下了最新的版本还是不行,后来看到一篇,提到在JS文件中出问题

,下面那网站上的解决方法:


if (!version)
    {
        try {
            // version will be set for 2.X player
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
            version = "WIN 2,0,0,11";
        } catch (e) {
            version = -1;
        }
    }


if (!version)
    {
        try {
            // version will be set for 2.X player
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
            version=axo.GetVariable("$version");
        } catch (e) {
            version = "WIN 2,0,0,11";
        }
    }

原创粉丝点击