为解决IE6下背景图闪烁
为解决IE6下背景图闪烁
?
另外,为解决IE6下背景图闪烁,可以在页面中添加如下脚本
<![if IE 6]>
<script type=”text/javascript”>
// <![CDATA[
if((window.navigator.appName.toUpperCase().indexOf("MICROSOFT")>=0)&&(document.execCommand))
try{
document.execCommand("BackgroundImageCache", false, true);
}
catch(e){}
// ]]>
</script>
<![endif]>