JavsScript实现动态增加和删除TABLE的行.
时间:2006-06-14 来源:再见还是雨冬
代码逻辑不算复杂,不懂的可以查下手册什么的.详细解释等有空再加上去.现在都一点了.呵呵.
<html>
<head>
<title>table add</title>
</head>
<body>
<table id="valueTable" border="1">
<tbody>
<tr>
<th>col 1</th>
<th>col 2</th>
</tr>
<tr>
<th>1.1</th>
<th>1.2</th>
</tr>
</tbody>
</table>
<br/>
<input id="add" value="addTable" type="button" onclick="addTable();"></input>
<input id="delete" value="delTable" type="button" onclick="delTable();"></input>
</body>
</html>
相关阅读 更多 +