从网页打开应用程序
opening applications from a webpage
我使用以下方法从网页打开记事本:
<html>
<head>
<title>Application Executer</title>
<HTA:APPLICATION ID="oMyApp"
APPLICATIONNAME="Application Executer"
BORDER="no"
CAPTION="no"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
SCROLL="no"
WINDOWSTATE="normal">
<script type="text/javascript" language="javascript">
function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("C:\Program Files\Notepad++\notepad++.exe", 1, false);
}
</script>
</head>
<body>
<input type="button" value="Run Notepad" onclick="RunFile();"/>
</body>
</html>
这行得通。
当我尝试使用应用程序、notepad++、dreamweaver 等时,它失败了。
在控制台中,错误标记在第
行
WshShell.Run("C:\Program Files\Notepad++\notepad++.exe", 1, false);
让我觉得错误与应用程序类型有关
是否有可以使用此方法打开的应用程序列表? Microsoft 应用程序、word/excel 和其他应用程序如何使用此方法打开?
两个概率:
- 如果路径包含空格,您需要用引号将其括起来
- This is JavaScript 所以字符串中的
\
是一个特殊字符,用于指示转义序列,要将 \
放入字符串中,它必须将其本身转义为 \
使用:
WshShell.Run('"C:\Program Files\Notepad++\notepad++.exe"', 1, false);
我使用以下方法从网页打开记事本:
<html>
<head>
<title>Application Executer</title>
<HTA:APPLICATION ID="oMyApp"
APPLICATIONNAME="Application Executer"
BORDER="no"
CAPTION="no"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
SCROLL="no"
WINDOWSTATE="normal">
<script type="text/javascript" language="javascript">
function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("C:\Program Files\Notepad++\notepad++.exe", 1, false);
}
</script>
</head>
<body>
<input type="button" value="Run Notepad" onclick="RunFile();"/>
</body>
</html>
这行得通。
当我尝试使用应用程序、notepad++、dreamweaver 等时,它失败了。
在控制台中,错误标记在第
行WshShell.Run("C:\Program Files\Notepad++\notepad++.exe", 1, false);
让我觉得错误与应用程序类型有关
是否有可以使用此方法打开的应用程序列表? Microsoft 应用程序、word/excel 和其他应用程序如何使用此方法打开?
两个概率:
- 如果路径包含空格,您需要用引号将其括起来
- This is JavaScript 所以字符串中的
\
是一个特殊字符,用于指示转义序列,要将\
放入字符串中,它必须将其本身转义为\
使用:
WshShell.Run('"C:\Program Files\Notepad++\notepad++.exe"', 1, false);