本文介绍了IE BHO本地存储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
我现在正在创建IE插件(BHO),我想知道是否在客户端计算机上已经安装了我的BHO.

所以有人可以建议我如何找到这个.

感谢您的帮助.

Hello All,
I am creating an IE addons(BHO) now i want to know whether at client machine, my BHO is already installed or not.

So can anybody suggest how can i find out this.

Any help is appreciated.

推荐答案

var control = null;

try
{

control = new ActiveXObject('ProgID');
if(control = null)
{
alert('Plugin not installed');
}
else
{
alert('Plugin Installed');
}

}
catch(e)
{
alert('Plugin not installed');
}



请记住用您的唯一ID替换"ProgId".

希望这对您有帮助...



Remember to replace ''ProgId'' with your unique id.

Hope this helps...


这篇关于IE BHO本地存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 00:46