我有一个透明的png(test.png),我正在尝试使用dd_belatedpng.js,因此它显示在IE6中。它的版本是0.0.8a。
无论我做什么,背景图片都不会出现。我已经安装了httpwatch并查看我知道它正在加载。有什么想法吗?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
<body>
<style type="text/css">
.footer {
background-image: url(/images/test.png);
width:900px;
border:1px solid red;
height:230px;
}
</style>
<div class="footer">
<p>footer</p>
</div>
<!--[if lte IE 6]>
<script src="/js/dd_belatedpng.js" type="text/javascript"></script>
<script type="text/javascript">
DD_belatedPNG.fix('.footer');
</script>
<![endif]-->
</body>
</html>