- /**
- * 判断浏览器类型是否是IE,是则返回true,不是返回false
- * ServletActionContext是struts2上下文对象
- * @author 李英夫(2010-6-20 上午09:36:48)
- * @return boolean
- */
- public static boolean isIE(){
- return ServletActionContext.getRequest().getHeader( "USER-AGENT" ).toLowerCase().indexOf( "msie" ) > 0 ? true : false ;
- }
转载于:https://blog.51cto.com/daheyuan/1140888