如何在不使用 Active X 的情况下将 DDE 与 Javascript 结合使用?

发布于 2024-09-27 08:41:07 字数 340 浏览 6 评论 0原文

我正在尝试找到一种方法来完成相当于

comm = window.event.srcElement._command;
if(comm){
    xlApp = new ActiveXObject("Excel.Application");
    var app = xlApp.DDEInititate(".....", "....");
    xlApp.DDEExecute(app,comm);
    xlApp.DDETerminate(app);
    app = "";
    xlApp.Quit();
}

不使用 activeX 对象的操作。有没有可以实现这一点的框架?

I'm trying to find a way to do the equivalent of

comm = window.event.srcElement._command;
if(comm){
    xlApp = new ActiveXObject("Excel.Application");
    var app = xlApp.DDEInititate(".....", "....");
    xlApp.DDEExecute(app,comm);
    xlApp.DDETerminate(app);
    app = "";
    xlApp.Quit();
}

without the use of an activeX object. Are there any frameworks out there that can accomplish this?

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

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

发布评论

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

评论(1

无尽的现实 2024-10-04 08:41:07

纯 JavaScript 无法与其他应用程序或共享库通信。

编辑:您也许可以使用 [Java 小程序](具有额外权限)来完成此操作,并且有多种方法可以在 Java 和 JavaScript 之间进行通信。

Pure JavaScript can't communicate with other applications or shared libraries.

EDIT: You might be able to do it with a [Java applet] (with extra permissions), and there are ways to communicate between Java and JavaScript.

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