如何测试是否使用jQuery安装了Adobe AIR?

时间:2011-12-19 15:14:21

标签: jquery air

是否可以使用jQuery查找是否安装了Adobe AIR?

提前非常感谢你。

1 个答案:

答案 0 :(得分:0)

我不确定你为什么要使用jQuery来测试它,但是有一些说明可以使用.swf文件和vanilla javascript来实现:

http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118666ade46-7e15.html#WS5b3ccc516d4fbf351e63e3d118666ade46-7c85

您只需要替换

trace("Not installed."); 
// Take appropriate actions. For instance, present the user with 
// an option to install the application. 

使用未安装Air时要触发的逻辑,所以

$("#error").text("Please install Adobe Air to continue");

或类似的东西。

有没有要求用jQuery专门测试它?