解决办法:

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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-14
  • 2021-06-06
  • 2022-01-25
  • 2022-12-23
猜你喜欢
  • 2021-07-28
  • 2021-09-20
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2021-10-27
相关资源
相似解决方案