DD_belatedPNG.js解决透明PNG图片背景灰色问题

<!--[if IE 6]>
<script type="text/javascript" src="http://www.phpddt.com/usr/themes/dddefault/DD_belatedPNG.js"></script>
<script>
DD_belatedPNG.fix('.png_bg');
</script>
<![endif]-->

使用及其简单,上面代码表示IE6下加载DD_belatedPNG.js文件,将class=".png_bg"的img图片修复背景不透明效果。
需要注意的是:
1.你可以修复多个选择器的img图片:DD_belatedPNG.fix('.example1, .example2, img');
2.如果是用透明PNG作为a:hover时的背景图片,那么以”a:hover”来作为选择器:DD_belatedPNG.fix('.png a:hover');
 你可以点击DD_belatedPNG.zip下载。更多详细教程请看官网(http://www.dillerdesign.com/experiment/DD_belatedPNG/)

文章来源:http://www.phpddt.com/dhtml/DD_belatedPNG.html

原文地址:https://www.cnblogs.com/wesky/p/5344973.html