<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<SCRIPT language="javascript">
function Display(obj)
{
sid=obj.parentNode.parentNode.nextSibling;
if (sid.style.display == "none")
{
sid.style.display="";
obj.innerText="-";
}else{
sid.style.display="none";
obj.innerText="+";
}
}
</SCRIPT>
</head>
<body>
<form id="form1" runat="server">
<table border=1>
<tr>
<td><div οnclick="Display(this)">+</div></td>
</tr>
<tr>
<td>45454545</td>
</tr>
</table>
</form>
</body>
</html>