2012-02-08 59 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> 

回答