1. Css处理:

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

( 缺点:expression 影响性能 )

2. JavaScript处理:

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

3. 针对IE6比较完美的Css方案:

html {
  zoom:expression(function(ele){
  document.execCommand('BackgroundImageCache', false, true);
  ele.style.zoom = '1';	
  }(this));	
}
posted on 2012-06-15 20:02  Ms.〢、洁 儿  阅读(209)  评论(0编辑  收藏  举报