我正在构建一个.hta(使用javascript),我想从中启动几个应用程序。
但是当我执行.hta时,出现错误消息找不到文件
这是代码:
<script type="text/javascript" language="javascript">
function RunFile(path) {
var relpath = window.location.href;
var fullpath = relpath + path;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(fullpath, 1, false);
}
RunFile("\file.exe");
</script>
window.location.href
也包括文件名和协议。试试这个: