x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function insCell() {
8
var x = document.getElementById('tr1').insertCell(0);
9
x.innerHTML = "The famous";
10
}
11
</script>
12
</head>
13
<body>
14
15
<table border="1">
16
<tr id="tr1">
17
<td>Peter</td>
18
<td>Griffin</td>
19
</tr>
20
</table>
21
<br>
22
<input type="button" onclick="insCell()" value="插入单元格">
23
24
</body>
25
</html>