可以啊,你怎么写的?
<body>
<table border="1">
<tr id="hide-this">
<td>1111111111111111111111111111111</td>
</tr>
<tr>
<td>222222222222222222222222222222</td>
</tr>
</table>
<script type="text/javascript">
var obj=document.getElementById("hide-this");
obj.style.display="none";
</script>
</body>