IE7是会缓存页面的背景图片的
在IE6下可以使用下面方法开启缓存
<!--[if IE 6]>
<script type="text/javascript">
try{document.execCommand("BackgroundImageCache", false, true);}catch(e){}
</script>
<![endif]-->
本文介绍了一种在IE6浏览器中开启背景图片缓存的方法,通过JavaScript代码实现,有助于提高网页加载速度。
IE7是会缓存页面的背景图片的
在IE6下可以使用下面方法开启缓存
<!--[if IE 6]>
<script type="text/javascript">
try{document.execCommand("BackgroundImageCache", false, true);}catch(e){}
</script>
<![endif]-->

被折叠的 条评论
为什么被折叠?