JavaScript 中专有的 ActiveXObject 是否有替代方案

发布于 2024-10-17 10:36:21 字数 240 浏览 6 评论 0原文

JavaScript 中是否有 IE 专有 ActiveXObject 的通用替代方案?由于缺乏这样的通用替代方案,是否有一种方法可以在 Mozilla 中使用 COM 对象?

这个问题的原因是我想要一个

var conObj = new ActiveXObject('ADODB.Connection');

与 mozilla 等效的东西(供本地使用)。

Is there a general alternative to IE's proprietary ActiveXObject in JavaScript. Lacking such a general alternative, is there a method to use COM Objects with Mozilla?

The reason for the question is that I'd like to have an equivalent to

var conObj = new ActiveXObject('ADODB.Connection');

with mozilla (for local use).

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

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

发布评论

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

评论(2

香橙ぽ 2024-10-24 10:36:21

Mozilla 没有可用于非插件代码的 COM 等效项。
插件可以使用 XPCOM

如果您想要 ADODB.Connection 之类的东西,请查看新的 HTML5 本地存储 API。 http://paperkilledrock.com/2010/05/html5 有一个很好的教程-localstorage-part-one/

There is no equivalent to COM for Mozilla that's available to non plugin code.
Plugins can use XPCOM.

If you want something like ADODB.Connection, take a look at the new HTML5 local storage APIs. There's a good tutorial at http://paperkilledrock.com/2010/05/html5-localstorage-part-one/

顾冷 2024-10-24 10:36:21

根据您想要实现的目标,您可以使用 ActiveX 完成的许多操作都可以通过 Google Gears

Depending on what you want to achieve, a lot of the things that you can do with ActiveX can be done with Google Gears

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