<html>
<head>
<script type="text/javascript">
<!--//
function delRow(){
document.getElementById('tableList').deleteRow(0)
}
//-->
</script>
</head>
<body>
<table id="tableList">
<tr><td>Row1</td></tr>
<tr><td>Row2</td></tr>
</table>
<br />
<input type="button" onclick="delRow()">
</body>
</html>
<head>
<script type="text/javascript">
<!--//
function delRow(){
document.getElementById('tableList').deleteRow(0)
}
//-->
</script>
</head>
<body>
<table id="tableList">
<tr><td>Row1</td></tr>
<tr><td>Row2</td></tr>
</table>
<br />
<input type="button" onclick="delRow()">
</body>
</html>


덧글