我正在尝试从浏览器Firefox
或Chrome
浏览器打开文件。我已经编写了以下代码,它可以Notepad
从 Internet Explorer 成功打开。如果我想从 Firefox 或 Chrome 浏览器打开应用程序,请告诉我如何编写此代码。
<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 XMLHttpRequest("WScript.Shell");
//WshShell.Run("c:/windows/system32/notepad.exe", 1, false);
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>