IE6下雪碧图多次请求fix方法

在ie6下发现雪碧图有同一图片多次请求的bug,请在head中增加如下代码以解决问题(最好不要放在底部,否则效果不能保证).

<!--[if IE 6]>

<script type="text/javascript">try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}</script>

<![endif]-->

原文地址:https://www.cnblogs.com/Langzi127/p/2538428.html