下面是代码:
body {
font: 12px Arial, Helvetica, sans-serif;
color: #000;
background-color: #EEF2FB;
margin: 0px;
}#container {
width: 182px;
}H1 {
font-size: 12px;
margin: 0px;
width: 182px;
cursor: pointer;
height: 30px;
line-height: 20px;
}H1 a {
display: block;
width: 182px;
color: #000;
height: 30px;
text-decoration: none;
moz-outline-style: none;
background-image: url(images/menu_bgS.gif);
background-repeat: no-repeat;
line-height: 30px;
text-align: center;
margin: 0px;
padding: 0px;
}.content {
width: 182px;
height: 26px;
}.MM ul {
list-style-type: none;
margin: 0px;
padding: 0px
display: block;
}.MM li {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 26px;
color: #333333;
list-style-type: none;
display: block;
text-decoration: none;
height: 26px;
width: 182px;
padding-left: 0px;
}.MM {
width: 182px;
margin: 0px;
padding: 0px;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
clip: rect(0px, 0px, 0px, 0px);
}.MM a:link {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 26px;
color: #333333;
background-image: url(images/menu_bg1.gif);
background-repeat: no-repeat;
height: 26px;
width: 182px;
display: block;
text-align: center;
margin: 0px;
padding: 0px;
overflow: hidden;
text-decoration: none;
}.MM a:visited {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 26px;
color: #333333;
background-image: url(images/menu_bg1.gif);
background-repeat: no-repeat;
display: block;
text-align: center;
margin: 0px;
padding: 0px;
height: 26px;
width: 182px;
text-decoration: none;
}.MM a:active {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 26px;
color: #333333;
background-image: url(images/menu_bg1.gif);
background-repeat: no-repeat;
height: 26px;
width: 182px;
display: block;
text-align: center;
margin: 0px;
padding: 0px;
overflow: hidden;
text-decoration: none;
}.MM a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 26px;
font-weight: bold;
color: #006600;
background-image: url(images/menu_bg2.gif);
background-repeat: no-repeat;
text-align: center;
display: block;
margin: 0px;
padding: 0px;
height: 26px;
width: 182px;
text-decoration: none;
}
</style>
</head> <body>
<table width="100%" height="280" border="0" cellpadding="0"
cellspacing="0" bgcolor="#EEF2FB">
<tr>
<td width="182" valign="top">
<div id="container">
<h1 class="type">
<a href="javascript:void(0)">功能菜单</a>
</h1>
<div class="content">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="images/menu_topline.gif" width="182" height="5" />
</td>
</tr>
</table>

<ul class="MM">
<c:forEach items="${list}" var="pow">
<li><a href="${pow.powURL}" target="main">${pow.powName}</a></li>
</c:forEach>
</ul>


       </div>
      
</div>
</td></tr></table>firefoxieui

解决方案 »

  1.   

    你是指超链接的背景不显示?用的IE是哪个版本?你这段代码我用IE8测了测,是显示图片的。
      

  2.   

     我用IE8测也没问题,IE9$ {pow.powName} 也不显示,该怎么弄?
      

  3.   

    首先,你的意思是${pow.powName}不显示内容?也就是说将其改为xxx超链接的背景是显示的?
    如果如此的话,你要是使用的是struts2可以使用它的property标签尝试一下看是否能获取到值,例如<c:property value="#pow.powName" />。