<head>
<title>test</title>
<script language="javascript">
function contrl(id){ //id为传入对象的名称使用时要加''
var obj=document.getElementById(id); //取得名称为id的对象
if (obj.style.display=="none"){ //显示模式为不显示
obj.style.display=""; //更改显示模式
} else {
obj.style.display="none"; //否则更改显示模式为不显示
}
}
</script>
</head>
<body>
<table width="100%" border="1">
<tr id="test" style="display:none"><td>This is a test!</td></tr>
<tr><td align="center"><input type="button" onClick="contrl('test')" value="显 示"></td></tr>
</table>
</body>
</html>
|