青岛 网站维护关键字
简单的jQuery代码段,用于检查浏览器是否启用了Flash。 我还找到了一篇有关如何打开和关闭闪光灯以进行浏览器测试的有用文章。
相关文章:
- 历来5个最令人印象深刻的类似Flash的导航菜单
//checks if flash is installed/enabled on the browser
function isFlashEnabled()
{var hasFlash = false;try{var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');if(fo) hasFlash = true;}catch(e){if(navigator.mimeTypes ["application/x-shockwave-flash"] != undefined) hasFlash = true;}return hasFlash;
}
From: https://www.sitepoint.com/jquery-check-flash-enabled/