IE6下iframe调用的页面中含有DD_belatedPNG js的引用,iframe显示为空白的BUG

解决办法:

if (el.currentStyle.position == 'static') {
                el.style.position = 'relative';
        }

把DD_belatedPNG 文件中这段修改成下面就OK了

if (el.currentStyle.position == 'static') {
            if (el.nodeName != 'HTML')
                el.style.position = 'relative';
        }

 

 

IE6下面的BUG真多~~~~~~

posted @ 2012-05-21 11:04  lx_  Views(419)  Comments(0Edit  收藏  举报