如何在不使用 Active X 的情况下将 DDE 与 Javascript 结合使用?
我正在尝试找到一种方法来完成相当于
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
纯 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.