0
我用VB腳本編寫的工作HTML頁面,這裏點擊按鈕文檔會被打開。在這裏CreateObject工作正常。我不得不在JSP中寫ActiveX代碼不工作的代碼我寫的代碼:VOB的CreateObject的替代方案是Javascript中的ActiveXObject不起作用
function Opensig_OnClick(customerId) {
var str;
$.ajax({
url: getContextPath() + "/app/omnidocupload/appDocument/sigcap/accountnumberforsalaryaccount/" + customerId,
async: true,
data: {
custId: customerId
},
success: function(responseObject) {
str = responseObject;
}
});
var sigobj = new ActiveXObject("Wrsrv.Document");
var reststus = sigobj.verify(str, 0, 1);
}
這裏按鈕,功能Opensig_OnClick的點擊被調用。但我得到錯誤在線var sigobj = new ActiveXObject(「Wrsrv.Document」);是自動化服務器不能創建對象
ActiveXObject僅在Internet Explorer中受支持http://stackoverflow.com/questions/25311570/activexobject-in-ie11 – Slai
我在IE 8中運行了此代碼,並且所有ActiveXObject設置都將在我從其他帖子中讀取時啓用。這個錯誤即將到來。你能建議用javascipt寫這個vbscript嗎? –
在ie11上運行程序時,實際設置模式爲ie 8 –