|
我 的 日 历 |
|
最 新 评 论 |
|
友 情 链 接 |
|
搜 索 日 志 |
|
访 问 计 数 |
|
获 取 R S S |
|
|
显示table [2006-3-20] jybbh 发表在 WEB相关
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>test</title>
<script language="javascript" type="text/javascript">
function show(strtype){document.getElementById(strtype).style.display = "block";}
function hide(strtype){document.getElementById(strtype).style.display = "none";}
</script>
</head>
<body>
<table>
<tbody>
<tr valign="top">
<td>
<table style="display:block" id="tbl1">
<tr>
<td>
<a href="#">abc</a>
<a href="#" onclick="javascript:show('tbl2');hide('tbl1');">cba</a>
aaaaa
</td>
</tr>
</table>
<table style="display:none" id="tbl2">
<tr>
<td>
<a href="#" onclick="javascript:show('tbl1');hide('tbl2');">abc</a>
<a href="#">cba</a>
bbbbb
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>
| | |
|