브라우저를 판단하고 서로 다른 브라우저에 대해 단독 스타일을 넣는 방법

7902 단어 브라우저
<script> window.onload = function() { var isChrome = window.navigator.userAgent.indexOf("Chrome") !== -1 

        //alert(isChrome);

        if(isChrome) $("#fotdiv").removeClass('fotdiv a'); if(isChrome) $("#fotdiv").addClass('fotdiv2 a');


 :



var isChrome = window.navigator.userAgent.indexOf("Chrome") !== -1 

 chrome , , 。 



 :



var isChrome = window.google && window.chrome 



 , gears, , csi loadTimes。


  <script type="text/javascript">

var isIE=navigator.userAgent.toUpperCase().indexOf("MSIE")==-1?false:true; if(isIE) document.getElementById("abc").style.display=""; </script>  head  <script type="text/javascript">

var isIE=navigator.userAgent.toUpperCase().indexOf("MSIE")==-1?false:true; window.onload=function () { if(isIE) document.getElementById("abc").style.display=""; } </script>



 
 
.fotdiv a{text-decoration:none; display:inline-block;padding-left:11px;padding-right:11px;} 

.fotdiv2 a{text-decoration:none; display:inline-block;padding-left:8px;padding-right:8px;}

좋은 웹페이지 즐겨찾기