javascript检测浏览器flash版本的实现代码
更新时间:2011年12月06日 22:16:25 作者:
javascript检测浏览器flash版本的实现代码,需要的朋友可以参考下。
记录:
(function(){
ver has=0, ver=0;
try{
has=new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
if(has) {
ver = +(has.GetVariable("$version").match(/\d+/));
}
}
catch(e){
has=navigator.plugins["Shockwave Flash"];
if(has) {
ver = +(has.description.match(/\d+/));
}
}
console.log(ver);//0即无插件
})()
复制代码 代码如下:
(function(){
ver has=0, ver=0;
try{
has=new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
if(has) {
ver = +(has.GetVariable("$version").match(/\d+/));
}
}
catch(e){
has=navigator.plugins["Shockwave Flash"];
if(has) {
ver = +(has.description.match(/\d+/));
}
}
console.log(ver);//0即无插件
})()
相关文章
Angular组件拿不到@Input输入属性问题探究解决方法
最近在工作中实现一个feature的时候,碰到一个小问题:Angular组件拿不到@Input输入属性的问题,尽管对这些问题都比较了解,但是找问题是需要一个过程的,所以还是把这个问题总结记录了下2023-01-01Locate a File Using a File Open Dialog Box
Locate a File Using a File Open Dialog Box...2007-06-06
最新评论