JSP+Struts1.2点击这条信息后的按钮时,调用什么方法,可以将其隐藏,跳转到当前页面,不让它在这页面上显示出来,其他信息正常显示,请高手指教~~~说的尽量详细点<div id="hid">
信息
</div>
<input type="button" onclick="doHide();">
function doHide(){
document.getElementById("hid").style.display =
(document.getElementById("hid").style.display == "none"?:"":"none");
}