0
我只是想用html Js打開一個notepade.exe,我試過了這段代碼,但它不工作可以任何一個人幫我解決這個問題。這個文件是run.html !!!我無法使用Javascript打開一個exe文件
<html>
<head>
<script>
alert("hi");
<!-- myWindow.close(); -->
var param1var = window.location.search.replace("?", "");
alert(param1var);
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\\Windows\\notepad.exe";
oShell.ShellExecute(commandtoRun,"","","open","1");
window.close()
</script>
</head>
</html>
定義 「它不工作」。怎麼了?你有錯誤嗎? –
可能重複與http://stackoverflow.com/questions/3152482/running-exe-from-javascript –
我剛用記事本,可以看到在控制檯中的錯誤說:「未捕獲的ReferenceError:ActiveXObject未定義」 –