解决E-OA在IE8下兼容的问题

由于使用Infragistics下的树型控件Infragistics.WebUI.UltraWebNavigator.UltraWebTree,结果导致NodeClicked无响应

排除权限问题后,更改Scripts下/ig_csom.js文件,以便IE8下可正确响应

this.IsIE6    =((navigator.userAgent.indexOf("MSIE 6.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
 this.IsIE7        =((navigator.userAgent.indexOf("MSIE 7.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
this.IsIE8        =((navigator.userAgent.indexOf("MSIE 8.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
this.IsIE55Plus   =(this.IsIE55 || this.IsIE6|| this.IsIE7|| this.IsIE8);

你可能感兴趣的:(解决E-OA在IE8下兼容的问题)