Jquery IE6悬停问题,不断加载背景图片

时间:2010-03-18 09:50:38

标签: jquery hover background-image internet-explorer-6

请看这个页面:http://pearl.tinderfields.com/

在IE6中,每当用户将鼠标悬停在菜单项上时,菜单的背景图像就会加载,这显然会产生非常垃圾的菜单。

为什么IE6会在每次悬停时重新加载图像有什么特殊原因?

1 个答案:

答案 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)); 
}
希望这有帮助!