asp页面如何判断火狐浏览器是否安装了flash插件

2024-12-04 09:04:25
推荐回答(2个)
回答(1):

  您好!很高兴为您答疑!

  代码如下,兼容火狐和IE。
var isIE = !-[1,];if(isIE){ try{ var swf1 = new ActiveXObject('ShockwaveFlash.ShockwaveFlash'); alert('安装了Flash'); } catch(e){ alert('没有安装Flash'); }}else { try{ var swf2 = navigator.plugins['Shockwave Flash']; if(swf2 == undefined){ alert('没有安装Flash'); } else { alert('安装了Flash'); } } catch(e){ alert('没有安装Flash'); }}
  您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。

回答(2):

try{
var swf = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');

}
cache(e)

这是思路