tr 對象
定義和用法
insertCell() 方法用于在 HTML 表的一行的指定位置插入一個空的 <td> 元素。
文法
trObject.insertCell(index)
值 | 描述 |
---|---|
index | 該方法将建立一個新的 <td> 元素,把它插入行中指定的位置。新單元格将被插入目前位于 index 指定位置的表元之前。如果 index 等于行中的單元格數,則新單元格被附加在行的末尾。 |
浏覽器支援

所有主流浏覽器都支援 insertCell() 方法
執行個體
下面的例子在表格行中插入了一個單元格:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鳥教程(runoob.com)</title>
<script>
function displayResult(){
var firstRow=document.getElementById("myTable").rows[0];
var x=firstRow.insertCell(-1);
x.innerHTML="New cell"
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<td>First cell</td>
<td>Second cell</td>
<td>Third cell</td>
</tr>
</table>
<br>
<button type="button" onclick="displayResult()">插入單元格</button>
</body>
</html>
更多執行個體
向表格添加新行 - 然後添加單元格和内容
tr 對象