크로스 브 라 우 저 호환성 문제 해결
다음은 자바 의 코드 를 첨부 합 니 다. 다른 언어 는 이와 유사 합 니 다.
Rails request.env["HTTP_USER_AGENT"]
PHP $_SERVER["HTTP_USER_AGENT"];
ASP Request.ServerVariables("http_user_agent");
package com.util;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.http.HttpServletRequest;
/**
* UserAgent
* @author Snow
* */
public class UserAgentAnalyzer {
/**
* IE ,
* -1
* */
public static int getUserAgent(HttpServletRequest request)
{
String userAgent = request.getHeader("user-agent");
String regExp = ".*MSIE (\\d).*";
Pattern p = Pattern.compile(regExp);
Matcher m = p.matcher(userAgent);
String field = "";
boolean b = m.matches();// IE
if(b)
{
int version = -1;
try
{
field = m.group(1);
version = Integer.parseInt(field);
return version;
}
catch(Exception e)
{
return version;
}
}
else
{
return -1;
}
}
}
JSP 페이지 에서
<%@ page import="com.util.UserAgentAnalyzer" %>
<html>
<body>
public css links<br>
<%
int version = UserAgentAnalyzer.getUserAgent(request);
switch(version)
{
case 6:
%>
ie6 css links
<%
break;
case 7:
%>
ie7 css links
<%
break;
case 8:
%>
ie8 css links
<%
break;
case -1:
%>
firefox css links
<%
break;
}
%>
<br>
<%= "Version is "+ String.valueOf(version)%>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.