Latest web development tutorials

HTML DOM Table insertRow() 方法

Table 對象參考手冊 Table對象

定義和用法

insertRow() 方法用於在表格中的指定位置插入一個新行。

語法

tableObject.insertRow(index)

描述
index

指定插入新行的位置 (以 0 开始)。



瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持insertRow() 方法


實例

實例

在表格的第一位置插入一個新行:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(){
    var table=document.getElementById("myTable");
    var row=table.insertRow(0);
    var cell1=row.insertCell(0);
    var cell2=row.insertCell(1);
    cell1.innerHTML="New";
    cell2.innerHTML="New";
}
</script>
</head>
<body>

<table id="myTable" border="1">
    <tr>
        <td>cell 1</td>
        <td>cell 2</td>
    </tr>
    <tr>
        <td>cell 3</td>
        <td>cell 4</td>
    </tr>
</table>
<br>
<button type="button" onclick="displayResult()">插入新行</button>

</body>
</html>

嘗試一下»


Table 對象參考手冊 Table對象