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

来源:互联网 发布:Java 通用日志 编辑:程序博客网 时间:2024/05/21 21:45

由于使用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);

原创粉丝点击