我的菜单目前有以下代码
<td><a href="Products.asp?isnew=true"><img height="21" border="0" src="images/productmenu/new_items<%if request.querystring("isnew")="" then%><%else%>_bold<%end if%>.png" width="120"></a></td>
</tr>
<tr>
<td><a href="Products.asp?category=200 gram"><img height="21" border="0" src="images/productmenu/Shoes<%if trim(lcase(request.querystring("category")))<>"Shoes" then%><%else%>_bold<%end if%>.png" width="120"></a></td>
</tr>
<tr>
<td><a href="Products.asp?category=360 gram"><img height="21" border="0" src="images/productmenu/Shirts<%if trim(lcase(request.querystring("category")))<>"Shirts" then%><%else%>_bold<%end if%>.png" width="120"></a></td>
我想为这些菜单项中的每一个添加一个鼠标悬停,它会调用适当的图像,例如“new_items_highlight.png pic”用于鼠标悬停在新项目菜单链接上。
我可以在当前的“if”语句中添加附加语句吗?
谢谢您的帮助!!!