问题
I am having a hard time figuring out this problem. I have two different pages where I do the following query.
Page 1 ->
if (typeof(window.ActiveXObject) != "undefined")
//returns true
Page 2 ->
if (typeof(window.ActiveXObject) != "undefined")
//returns false
Pages are running on same browser IE11 and same IIS server.
Any suggestions?
来源:https://stackoverflow.com/questions/25311570/activexobject-in-ie11