请问:Select OnChange 事件中,怎样隐藏Table中的行,谢谢
<select onchange="t.rows[selectedIndex].style.display=none">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<table border="1" width="100%" id=t>
<tr>
<td width="100%">1</td>
</tr>
<tr>
<td width="100%">2</td>
</tr>
<tr>
<td width="100%">3</td>
</tr>
</table>