HTML DOM tr insertCell() 方法

2018-08-04 20:41 更新

tr insertCell() 方法

tr 對象參考手冊 tr 對象

定義和用法

insertCell() 方法用于在 HTML 表的一行的指定位置插入一個空的 <td> 元素。

語法

trObject.insertCell(index)

描述
index 該方法將創(chuàng)建一個新的 <td> 元素,把它插入行中指定的位置。新單元格將被插入當(dāng)前位于 index 指定位置的表元之前。如果 index 等于行中的單元格數(shù),則新單元格被附加在行的末尾。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流瀏覽器都支持 insertCell() 方法


實例

實例

下面的例子在表格行中插入了一個單元格:

<html>
<head>
<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()">Insert cell</button>

</body>
</html>

嘗試一下 ?


實例s

更多實例

向表格添加新行 - 然后添加單元格和內(nèi)容


tr 對象參考手冊 tr 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號