欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IE6上解决PNG透明图片问题

程序员文章站 2022-07-07 21:06:38
...
到官网下载DD_belatedPNG:http://dillerdesign.com/experiment/DD_belatedPNG/#download
然后你的页面上添加如下代码即可:
<!--[if IE 6]>
<script src="DD_belatedPNG.js" mce_src="DD_belatedPNG.js"></script>
<script type="text/javascript"> /* EXAMPLE */ DD_belatedPNG.fix('.png_bg'); /* 将 .png_bg 改成你应用了透明PNG的CSS选择器*/ </script>
<![endif]-->


如果是在在iframe中的页面,请修改DD_belatedPNG源码:
找到如下代码:
if (el.currentStyle.position == 'static') {
    el.style.position = 'relative'
}
修改为:
if (el.currentStyle.position == 'static') {
  if(el.nodeName.toLowerCase()!='html'){
        el.style.position = 'relative'
  }
}