Latest web development tutorials

HTML DOM Table insertRow () method

Table Object Reference Table Object

Definition and Usage

Specify the location insertRow () method is used in the table insert a new row.

grammar

tableObject.insertRow(index)

描述
index

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



Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support insertRow () method


Examples

Examples

In the first position of the table to insert a new row:

<!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>

try it"


Table Object Reference Table Object