IE6默认不缓存背景图片,引起鼠标抖动的解决方法

E6下默认不缓存背景图片,CSS里每次更改图片的位置时都会重新发起请求.

可用下方法来解决(让IE6缓存背景图片):

在head区(即<head>到</head>之间添加以下代码:
复制内容到剪贴板
代码:
<!–[if lt IE 7]>
<script type=”text/javascript”>
document.execCommand(”BackgroundImageCache”, false, true);
</script>
<![endif]–>

    <!--[if IE 6]>
    <script type=”text/javascript”> document.execCommand("BackgroundImageCache", false, true); </script>
    <![endif]-->

经测试,解决方法确实有效

原文地址:https://www.cnblogs.com/50614090/p/2092096.html