当前位置:  开发笔记 > 编程语言 > 正文

Javascript中的跨浏览器Flash检测

如何解决《Javascript中的跨浏览器Flash检测》经验,为你挑选了8个好方法。

有没有人有一个脚本的例子可以在IE/Firefox中可靠地工作,以检测浏览器是否能够显示嵌入式Flash内容.我说得可靠,因为我知道它不可能100%的时间.



1> Andrew Ensle..:

我同意Max Stewart的观点. SWFObject是要走的路.我想用代码示例来补充他的答案.这应该让你开始:

确保您已包含该swfobject.js文件(在此处获取):


然后像这样使用它:

if(swfobject.hasFlashPlayerVersion("9.0.115"))
{
    alert("You have the minimum required flash version (or newer)");
}
else
{
    alert("You do not have the minimum required flash version");
}

将"9.0.115"替换为您需要的最低闪存版本.我选择9.0.115作为示例,因为这是添加了h.264支持的版本.

如果访问者没有闪存,它将报告闪存版本为"0.0.0",因此如果您只想知道他们是否有闪存,请使用:

if(swfobject.hasFlashPlayerVersion("1"))
{
    alert("You have flash!");
}
else
{
    alert("You do not flash :-(");
}


大.我正在努力寻找一个简单的检测任何闪存安装的简单例子.谢谢.
谢谢你这个例子!如果用户没有flash并且已经使用swfobject进行嵌入,则需要运行其他一些javascript.:)

2> Max Stewart..:

SWFObject非常可靠.我已经使用它很长一段时间了.


使用jQuery和swfobject,这是我用来添加Modernizr风格的html类名的代码:`$('html').addClass(typeof swfobject!=='undefined'&& swfobject.getFlashPlayerVersion().major!== 0 ?'flash':'no-flash');`
如果有人有兴趣我在jsperf上[测试了其中一些案例](http://jsperf.com/flash-detection/2).SWFObject出来的速度最快.

3> 小智..:

我知道这是一个老帖子,但我一直在寻找一段时间,但没有找到任何东西.
我已经实现了JavaScript Flash Detection Library.它运作良好,并记录下来以便快速使用.它花了我2分钟.这是我在标题中写的代码:


        



4> stewe..:

您可以使用闭包编译器生成一个小的跨浏览器闪存检测:

// ==ClosureCompiler==
// @compilation_level ADVANCED_OPTIMIZATIONS
// @output_file_name default.js
// @formatting pretty_print
// @use_closure_library true
// ==/ClosureCompiler==

// ADD YOUR CODE HERE
goog.require('goog.userAgent.flash');
if (goog.userAgent.flash.HAS_FLASH) {
    alert('flash version: '+goog.userAgent.flash.VERSION);
}else{
    alert('no flash found');
}

这导致以下"编译"代码:

var a = !1,
    b = "";

function c(d) {
    d = d.match(/[\d]+/g);
    d.length = 3;
    return d.join(".")
}
if (navigator.plugins && navigator.plugins.length) {
    var e = navigator.plugins["Shockwave Flash"];
    e && (a = !0, e.description && (b = c(e.description)));
    navigator.plugins["Shockwave Flash 2.0"] && (a = !0, b = "2.0.0.11")
} else {
    if (navigator.mimeTypes && navigator.mimeTypes.length) {
        var f = navigator.mimeTypes["application/x-shockwave-flash"];
        (a = f && f.enabledPlugin) && (b = c(f.enabledPlugin.description))
    } else {
        try {
            var g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"),
                a = !0,
                b = c(g.GetVariable("$version"))
        } catch (h) {
            try {
                g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"), a = !0, b = "6.0.21"
            } catch (i) {
                try {
                    g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"), a = !0, b = c(g.GetVariable("$version"))
                } catch (j) {}
            }
        }
    }
}
var k = b;
a ? alert("flash version: " + k) : alert("no flash found");


这个解决方案是我们认为最清洁的.我们正在寻找一种检测是否安装了闪存的swfobject/library free方法.这样做的伎俩.谢谢!

5> Tom Roggero..:

我用过的最低版本(不检查版本,只是Flash插件):

var hasFlash = function() {
    return (typeof navigator.plugins == "undefined" || navigator.plugins.length == 0) ? !!(new ActiveXObject("ShockwaveFlash.ShockwaveFlash")) : navigator.plugins["Shockwave Flash"];
};


好又短,我喜欢它!

6> Kent Brewste..:

Carl Yestrau的JavaScript Flash Detection Library,在这里:

http://www.featureblend.com/javascript-flash-detection-library.html

......可能就是你要找的东西.



7> Joeri Sebrec..:

也许adobe的flash播放器检测套件在这里有用吗?

http://www.adobe.com/products/flashplayer/download/detection_kit/


我想指出一点:SWFObject是Adobe检测工具包的后续产品.

8> 小智..:

在Web文档中检测和嵌入Flash是一项非常困难的任务.

我对SWFObject和Adobe解决方案生成的质量和非标准兼容标记感到非常失望.此外,我的测试发现Adobe的自动更新程序不一致且不可靠.

JavaScript Flash检测库(Flash检测)和JavaScript Flash HTML生成器库(Flash TML)是一种易读,可维护且符合标准的标记解决方案.

- "卢克读了源!"

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有