我正在使用HTA,我想制作各种按钮来打开系统上的不同程序。
我设法通过runfile命令运行一个程序但是如何使用单独的按钮(例如MS Word)编写打开另一个程序。
<html>
<head>
<title>Start Screen</title>
<HTA:APPLICATION ID="startscreen"
APPLICATIONNAME="startscreen"
BORDER="thin"
BORDERSTYLE="normal"
CAPTION="yes"
ICON="ss.ico"
MAXIMIZEBUTTON="no"
MINIMIZEBUTTON="yes"
SCROLL="no"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
VERSION="1.0"
Navigable ="yes"
WINDOWSTATE="normal"
contextmenu="no" />
<script type="text/javascript" language="javascript">
function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("c:/windows/system32/notepad.exe", 1, false);
}
</script>
</head>
<body>
<input type="button" value="Run Notepad" onclick="RunFile();"/>
</body>
</html>
答案 0 :(得分:0)
怎么样
<input type="button" value="Run Notepad"
onclick="RunFile('c:/windows/system32/notepad.exe');"
/>
和RunFile()
函数的适当修改?
答案 1 :(得分:0)
您可以使用此
function RunFile(path) {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(path, 1, false);
}
<input type="button" value="Run Notepad" onclick="RunFile('c:\windows\notepad.exe');"/>
<input type="button" value="Run Paint" onclick="RunFile('c:\windows\system32\mspaint.exe');"/>
或者采用不同的方法。为app path创建变量
var notepad = "c:\windows\notepad.exe";
var paint = "c:\windows\system32\mspaint.exe";
并将它们传递给函数
<input type="button" value="Run Notepad" onclick="RunFile(notepad);"/>
<input type="button" value="Run Paint" onclick="RunFile(paint);"/>