2012-02-08 109 views
1

我想讓我的客戶端目前的Flash版本。 我設法讓IF客戶端電腦支持Flash,但不是他/她已安裝的版本。獲取當前的Flash版本(jQuery等)

在此先感謝!

<script type="text/javascript"> 
     $(document).ready(function() { 
     if ($.browser.flash == true) 
      $("#gotFlash").html("Flash supported"); 
     else 
      $("#gotFlash").html("Flash not supported); 
     }); 
</script> 

回答