解决办法:
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真多~~~~~~
解决办法:
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真多~~~~~~