JS檢測FlashPlayer

01 function chkFlash() { 

02     var isIE = (navigator.appVersion.indexOf("MSIE") >= 0); 

03     var hasFlash = true; 

04   

05     if(isIE) { 

06         try{ 

07             var objFlash = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); 

08         } catch(e) { 

09             hasFlash = false; 

10         } 

11     } else { 

12         if(!navigator.plugins["Shockwave Flash"]) { 

13             hasFlash = false; 

14         } 

15     } 

16     return hasFlash; 

17 }

作者“loowj的博客”
 

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *