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真多~~~~~~

你可能感兴趣的:(iframe)