<b>${userUNo }</b> 您好,感谢登陆使用!
如果userUNo不为空,如何让下面那张图片隐藏 就是images/in.gif 谢谢
<img src="images/in.gif" width="46" height="20" border="0">
设置display属性
<img id="someimage" src="images/in.gif" width="46" height="20" border="0">
document.getElementById("someimage").style.display="none";
放到div中 隐藏div
$("b").html()!=""
$("img").hide();
二楼正解……