发现在IE不支持PNG的透明背景,在网上搜索到了一些解决的方法,
但用起来也不是很方便:
1.使用 PNG 文件的 Web 开发人员可以使用 AlphaImageLoader 筛选器,如以下示例所示:
<html><head></head><body bgColor="blue">
<!-- This DIV is the target container for the image. -->
<DIV ID="oDiv" STYLE="position:absolute; left:140px; height:400; width:400;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='image.png', sizingMethod='scale');" >
</DIV></body></html>
2.一个PNG透明插件:
也是利用了 AlphaImageLoader 筛选器
https://files.cnblogs.com/cai9911/pngfix.rar