public static boolean isIE(){
return ServletActionContext.getRequest().getHeader("USER-AGENT").toLowerCaseindexOf("msie") > 0 ? true : false;
}
Java判断浏览器类型
最新推荐文章于 2021-04-21 11:47:48 发布
public static boolean isIE(){
return ServletActionContext.getRequest().getHeader("USER-AGENT").toLowerCaseindexOf("msie") > 0 ? true : false;
}