ft28 发表于 2013-1-29 08:29:04

为解决IE6下背景图闪烁

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