如何通过javascript或jquery检查浏览是否有较低版本的闪存?我能够检测是否安装了Flash。
答案 0 :(得分:0)
Cross Browser Flash Detection in Javascript的其中一条评论是一个小的javascript代码行,它也会读取该版本。
答案 1 :(得分:0)
if(swfobject.hasFlashPlayerVersion("1")) //Check your browser have flash or not
{
alert("You have flash!");
}
else
{
alert("You do not flash :-(");
}
if(swfobject.hasFlashPlayerVersion(" 11.7.700.169 "))//Check latest flash or not
{
alert("You have the minimum required flash version (or newer)");
}
else
{
alert("You do not have the minimum required flash version");
}