1
這裏我試圖用ActiveXObject調用系統計算器。在IE中它對我來說工作得很好,但在Firefox中它不會來。我收到未定義的錯誤。如何在Firefox中解決這個問題?ActiveXObject(「WScript.Shell」);在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);
}
}
當瀏覽器不等於IE時,不要使用ActiveXObject。你有我的觀點? –
如果您仍然有任何疑問,請讓我知道。 –
對於跨瀏覽器解決方案,請改用對象元素。閱讀更多關於它的信息,請訪問http://help.dottoro.com/ljcnpkfv.php –