구내식당

jsp 에서 chrome , ex 따로 이미지, 값 따로 넣고싶을때 본문

IT/Client

jsp 에서 chrome , ex 따로 이미지, 값 따로 넣고싶을때

구내식당 2017. 2. 10. 14:22

<% string browser="" ; 

string useragent=request.getHeader("User-Agent"); 

if (useragent.indexof("trident")> 0 || userAgent.indexOf("MSIE") > 0) {

browser = "IE";

%><div id="mouse_1" style="width:140px; height:140px; text-align: center;"> 

<img src="/img/main/banner3/aaa.png" style="width: 218px; height : 218px; margin-top: -44px; margin-left: 10px; display: inline-block;">

 </div>

 <% } 

else { 

browser="chrome" ; %>

<div id="mouse_1" style="width:140px; height:140px; text-align: center;">

 <img src="/img/main/banner3/bbb.png" style="width: 218px; height : 218px; margin-top: -43.5px; margin-left: -42px; display: inline-block;">

 </div> <% }

 %>

'IT > Client' 카테고리의 다른 글

sonarLint(코드 인스펙션 lib)  (0) 2023.05.26
onclick 이벤트가 안먹힐때  (0) 2017.01.26
javasript 함수 모음  (0) 2017.01.23
Cookie(쿠키)  (0) 2016.12.08
좋은 라이브러리 모음집  (0) 2016.11.21