IE 이미지 캐 시 document.execCommand("BackgroundImageCache",false,true)
2252 단어 IE그림 캐 시BackgroundImageCache
document.execCommand("BackgroundImageCache", false, true);
오늘 환 우의 드 림 플레이 어 소스 코드 를 읽 었 을 때 환 우 도 IE 의 배경 캐 시 를 대상 으로 복 구 했 습 니 다.다만 그 는 IE7 에 이러한 현상 이 존재 하지 않 는 다 는 것 을 고려 하지 않 았 습 니 다.이것 은 evml.js 의 관련 코드 입 니 다~두 세 마디 라 도~)프로그램 코드
var isIE = ua.indexOf("msie") > -1, isIE7 = ua.indexOf("msie 7") > -1;
// remove css image flicker
if(isIE && !isIE7){
try{
document.execCommand("BackgroundImageCache", false, true);
}catch(e){}
}
IE 가 항상 서버 에서 배경 이미 지 를 다시 불 러 와 UI 깜박 임 으로 이어지는 버그 를 해결 하 는 방법 을 다 루 는 많은 사람들 이 다시 돌 아 왔 습 니 다.딘 은 하나 와 많은 다른 사람들 이 같은 글 을 썼 습 니 다.오늘, I saw this simple workaround (from a fellow Googler who worked at Microsoft before): document.execCommand("BackgroundImageCache", false, true) Much simpler but makes me wonder why this is not the default setting? /** * 관련 답변*Nicholas C.Zakas@2007-02-26*/나 는 실제로 한동안 이"버그"에 대해 궁금 해 했 습 니 다.나 는 선 을 따라 어 딘 가 에 이 결정 은 논리 적 인 이유 로 만 들 어 졌 다 확신.. or maybe they thought there was some use case under which it would be desirable not to cache the background image. I'm generally not big on overriding things that seem to be design decisions (which this seems to be). I've never really thought this was a "bug"…bugs don't usually have switches that say "turn off bug".
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
KindEditor 4.1.2 ie6 loadScript bugKindEditor 버전 4.1.2 ie6 아래_loadScript 메소드 버그 소스 코드는 다음과 같습니다. 이 세그먼트 코드를 다음 코드로 변경하면 정상적으로 실행됩니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.