请看这个页面:http://pearl.tinderfields.com/
在IE6中,每当用户将鼠标悬停在菜单项上时,菜单的背景图像就会加载,这显然会产生非常垃圾的菜单。
为什么IE6会在每次悬停时重新加载图像有什么特殊原因?
答案 0 :(得分:3)
阅读本文:
http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=1&postId=1104
<script type="text/javascript">
try {
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
</script>
或尝试CSS方式
html {
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}
希望这有帮助!