如何解決服務(wù)器不能創(chuàng)建對(duì)象錯(cuò)誤的問(wèn)題?
掃描二維碼
隨時(shí)隨地手機(jī)看文章
在JavaScript中彈出打開(kāi)文件對(duì)話框,代碼如下:
var?fileOpenDlg?=?new?ActiveXObject("MSComDlg.CommonDialog");
結(jié)果出現(xiàn)錯(cuò)誤:
解決辦法是:
?????? 假如是Windows32位環(huán)境,檢查C:Windowssystem32comdlg32.ocx這個(gè)文件是否存在,若存在,則運(yùn)行注冊(cè)命令:Regsvr32 C:Windowssystem32comdlg32.ocx。
?????? 假如是Windows64位環(huán)境,檢查C:WindowsSysWOW64COMDLG32.OCX這個(gè)文件是否存在,若存在,則運(yùn)行注冊(cè)命令:Regsvr32 C:WindowsSysWOW64COMDLG32.OCX。