解决在iframe页面里使用了DD_belatedPNG后显示空白的bug

阅读更多
IE6不支持png的图片,DD_belatedPNG这个js脚本可以使png图片或背景透明,http://www.dillerdesign.com/experiment/DD_belatedPNG/ 。但在使用过程中发现一个问题,当页面嵌在iframe里面时,显示的是空白,什么都看不到,问题出现在下面这个地方:

if(a.currentStyle.position=="static"){
    a.style.position="relative";
}

这里的a元素没有排除HTML节点,把HTML的position也设为relative了,改为下面的代码即可解决问题:

if(a.currentStyle.position=="static"){
    if(a.nodeName!='HTML'){
        a.style.position="relative";
    }
}
  • DD_belatedPNG_modified.zip (2.9 KB)
  • 下载次数: 10

你可能感兴趣的:(js,png处理)