1
我有這行代碼,這會引發錯誤在IE-11瀏覽器,錯誤:自動化服務器不能創建對象
var excApp = new ActiveXObject("Excel.Application");
發生以下錯誤: 錯誤:自動化服務器可以不創建對象。
有沒有解決方法?
我有這行代碼,這會引發錯誤在IE-11瀏覽器,錯誤:自動化服務器不能創建對象
var excApp = new ActiveXObject("Excel.Application");
發生以下錯誤: 錯誤:自動化服務器可以不創建對象。
有沒有解決方法?
不能在IE11使用的ActiveXObject:
http://msdn.microsoft.com/en-us/library/ie/dn423948%28v=vs.85%29.aspx
Starting with IE11, the navigator object supports plugins and mimeTypes properties. In addition, the window.ActiveXObject property is hidden from the DOM. (This means you can no longer use the property to detect IE11.)
ActiveXObjects在IE11確實支持。請參閱您發佈的鏈接中JavaScript示例下方的「註釋」。 「 」IE11仍支持ActiveXObject對象類型,您可以使用它來實例化ActiveX控件,但不再支持它作爲窗口對象的屬性。「 –