在这里,我尝试使用 ActiveXObject 调用系统计算器。在 IE 中它对我来说工作正常,但在 Firefox 中它不会出现。我收到未定义的错误。如何在 Firefox 中解决这个问题?
try{
if(gBrowser == 'IE'){
var shell = new ActiveXObject("WScript.Shell");
shell.Run("calc");
}
else{
var shell = new ActiveXObject("WScript.Shell");
shell.Run("calc",1,true);
}
}
catch(e){
if(gBrowser == 'IE'){
alert(e.description);
}
else{
alert(e.description);
}
}