看看这个页面: http: //pearl.tinderfields.com/
在 IE6 中,每次用户将鼠标悬停在菜单项上时都会加载菜单的背景图像,这显然是在制作一个看起来很垃圾的菜单。
IE6为什么会在每次悬停时重新加载图像有什么特殊原因吗?
看看这个页面: http: //pearl.tinderfields.com/
在 IE6 中,每次用户将鼠标悬停在菜单项上时都会加载菜单的背景图像,这显然是在制作一个看起来很垃圾的菜单。
IE6为什么会在每次悬停时重新加载图像有什么特殊原因吗?
读这个:
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));
}
希望这有帮助!