1
我有以下JavaScript代碼。 (其實我有發動對客戶端的EXE)WScript.Shell不工作在FireFox
function executeCommands()
{
var commandtoRun ="C:\\WINDOWS\\notepad.exe";
var oShell = new ActiveXObject("WScript.Shell");
oShell.run(commandtoRun);
}
此代碼可以在Internet Explorer啓動記事本時,我的安全選項設置爲「低」,但在Firefox這段代碼無法啓動記事本。
任何建議將感激..
那麼有沒有其他的方式來使用JavaScript啓動一個exe文件?我已經使用了Shell.Application,但它不起作用... – jitendra 2010-12-21 13:21:53