热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

从JavaScript调用VBScript,反之亦然?-CallingVBScriptfromJavaScriptorviceversa?

IsitpossibletocallaVBScriptfunctionfromaJavaScriptcall,oralternatelycallJavaScriptfr

Is it possible to call a Vbscript function from a Javascript call, or alternately call Javascript from a Vbscript call?

是否可以从Javascript调用中调用Vbscript函数,或者从Vbscript调用中调用Javascript?

3 个解决方案

#1


Yes, if your main script is a Windows Script File (WSF).

是的,如果您的主脚本是Windows脚本文件(WSF)。

WSF files can include other script files and execute code from multiple engines.

WSF文件可以包含其他脚本文件并从多个引擎执行代码。

#2


Calling a Vbscript function from Javascript

从Javascript调用Vbscript函数

Your Vbscript:

Function myVBFunction()
  ' here comes your Vbscript code
End Function

Your Javascript:

function myJavascriptFunction(){
  myVBFunction();           // calls the vbs function
}
window.Onload= myJavascriptFunction;

Calling a Javascript function from Vbscript

从Vbscript调用Javascript函数

Function myVBFunction()
  myJavascriptFunction()  
End Function

#3


This is also possible within HTA's by specifying the language when the function is called, like this:

通过在调用函数时指定语言,这也可以在HTA中实现,如下所示:


see here for a more in depth example: http://docs.google.com/Doc?id=ajh85hfcbjj6_457g7v6fgfh

请参阅此处以获取更深入的示例:http://docs.google.com/Doc?id = ajh85hfcbjj6_457g7v6fgfh


推荐阅读
author-avatar
月曳柳覀梢
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有