禁用 ActiveX 控件的自动加载(通过 IE 帮助栏弹出窗口)

发布于 2024-10-18 00:08:48 字数 349 浏览 3 评论 0原文

在 IE 9 中,我有一个使用对象标记加载的 ActiveX 控件,即:

除非已经安装了此控件,否则在页面加载时会弹出一个帮助栏,询问我是否要安装。有办法禁用这个吗?

我希望它能够加载控件(如果已安装),如果没有安装则不执行任何操作。

谢谢

PS 任何指向有关 ActiveX 控件和对象标签的 Javascript 信息的指针将不胜感激,我似乎无法通过 Google 找到太多信息。

In IE 9, I have an ActiveX control loaded using an object tag, ie something like:

<object id="ASDF" classid="CLSID:..." codebase="ASDF.cab##version=1,2,3,4"></object>.

Unless this control has already been installed, on page load a help bar pops up asking if I want to install. Is there a way to disable this?

I'd like for it to load the control if it's installed and do nothing if not.

Thanks

PS Any pointers to Javascript info re ActiveX controls and object tags would be appreciated, I can't seem to find much via Google.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稀香 2024-10-25 00:08:48

删除 codebase 属性,它将显示 OBJECT 标记的内部文本,而不是在系统上尚未安装该控件时尝试安装该控件。

Remove the codebase attribute and it will display the innerText of the OBJECT tag instead of attempting to install the control when it isn't already installed on the system.

南笙 2024-10-25 00:08:48

检查CAB中打包的控件的版本是否与您在对象标记中编写的相同。

您还可以确保没有 CLSID 不匹配的情况,但问题很可能出在版本上。

Check that the version of your control packed in CAB is the same as you wrote in object tag.

Also you can make sure that there are no CLSID mismatches, but most probably the problem is in version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文