아름다운 세상속에
그대는 나의 모든걸
가져간 바람둥이..

NearFondue PopupNotice_plugin
7 일동안 열지 않음 close

밉다에 해당되는 글 1건

IE6 flickering bug - 988번째 이야기

Category : 데이터뱅크/Web
간단히 말해, IE6에서 롤오버 이미지를 계속해서 재 읽는 버그
도데체 windows me 와 ie6은 어쩔 수 없단 말인가..
나두 웹 작업을 하지만, ie6은 뭐 그리 건들일게 많은지.
사용자마다 옵션-일반-임시파일을 '페이지 열 때 마다'가 아닌 '자동'으로 맞춰주면 된다지만..
이게 말이 쉽지.
with js
  1. <script type="text/javascript">  
  2. (function(){  
  3.  /*Use Object Detection to detect IE6*/  
  4.  var m = document.uniqueID /*IE*/  
  5.  && document.compatMode /*>=IE6*/  
  6.  && !window.XMLHttpRequest /*<=IE6*/  
  7.  && document.execCommand ;  
  8.  try{   
  9.   if(!!m){  
  10.    m("BackgroundImageCache"falsetrue/* = IE6 only */  
  11.    }  
  12.   }catch(oh){};  
  13.  })();  
  14. </script>  
with css
  1. <!--[if IE 6]>  
  2. <style type="text/css">  
  3. html {  
  4.   filter: expression(document.execCommand("BackgroundImageCache"falsetrue));  
  5. }  
  6. </style>  
  7. <![endif]-->  

Writer profile
author image
LonnieNa 입니다.
http://www.needlworks.org
여러분과 나의 세상에 바라보는 시선을 달리합니다.
위로