IE6 flicker fix

IE6 flicker Fix

通过 CSS 修复

1
2
3
html {
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

通过 JavaScript 修复

1
2
3
try {
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {};

更改客户端设置

1
2
Tools  >  Internet Options > Temporary Internet files > Settings
选择Automatically,确定
0%