Jquery IE6悬停问题,持续加载背景图像

Jquery IE6悬停问题,持续加载背景图像,jquery,hover,background-image,internet-explorer-6,Jquery,Hover,Background Image,Internet Explorer 6,请看这一页: 在IE6中,每当用户将鼠标悬停在菜单项上时,菜单的背景图像就会加载,这显然是在制作一个看起来非常垃圾的菜单 IE6在每次悬停时都会重新加载图像,这有什么特殊原因吗 阅读以下内容: 希望这有帮助 工作得很好,你是现代的英雄。 <script type="text/javascript"> try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {} </script&

请看这一页:

在IE6中,每当用户将鼠标悬停在菜单项上时,菜单的背景图像就会加载,这显然是在制作一个看起来非常垃圾的菜单


IE6在每次悬停时都会重新加载图像,这有什么特殊原因吗

阅读以下内容:


希望这有帮助

工作得很好,你是现代的英雄。
<script type="text/javascript">
try {
 document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
</script>
html { 
filter: expression(document.execCommand("BackgroundImageCache", false, true)); 
}