如何从Mozilla Filrefox运行exe文件?
我尝试了这个但是没有用。
6
答案 0 :(得分:3)
您无法从网页运行任何系统命令。这只能在某些条件下使用Internet Explorer,但幸运的是,现代浏览器无法做到这一点。
答案 1 :(得分:1)
也许你的道路是不对的。它可以由whitheSpaces制作。
您可以通过引用包含空格的文件夹名称来解决此问题。
var oShell = new ActiveXObject("Shell.Application");
var comandtoRun = "C:\\'Buziol Games'\\'Mario Forever'\\'Mario Forever.exe'";
oShell.ShellExecute(comandtoRun,"","","open","1");
如果ActiveXObject不能在firefox上运行,则可以使用window.open
函数。
window.open('file:///C:"Buziol Games"/"Mario Forever"/"Mario Forever.exe"');