下面的代码是我如何在网页上的按钮上添加背景图像。它可以在 IE9、Firefox 和 Chrome 上运行:
<td>
<input id="btn1" style="width: 25px; height: 25px; background-image: url('images/refresh.png'); background-repeat: no-repeat;" type="button" onclick="Get()"/>
</td>
但是当我使用 IE6 时,它不显示图像。只是一个空按钮。
你们知道我们如何将图像放在将在 IE9 和 IE6 上显示的按钮上吗?