我正在尝试从Firefox
或Chrome
浏览器打开文件。我编写了以下代码,它已成功从Internet Explorer中打开Notepad
。如果我想从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>
答案 0 :(得分:1)
由于安全问题,这是不可能的。这只是为记事本和可信赖的程序工作。现在谷歌Chrome只允许谷歌的插件安装在Chrome.so用户应首先下载文件,然后运行它。这样的代码你想写,很容易破解或格式化用户的磁盘。
答案 1 :(得分:0)
完整上面的answare(reza jafari回答)我应该说,你有没有看到任何网站在你的电脑上打开.exe文件?绝对没有。因为它的成熟是不可能的