禁用 ActiveX 控件的自动加载(通过 IE 帮助栏弹出窗口)
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除 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.
检查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.