Latest web development tutorials

méthode HTML DOM Tableau insertRow ()

Table Object Reference Table Object

Définition et utilisation

Spécifiez la méthode emplacement insertRow () est utilisée dans le tableau insérer une nouvelle ligne.

grammaire

tableObject.insertRow(index)

描述
index

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



support du navigateur

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Tous les principaux navigateurs supportent insertRow méthode ()


Exemples

Exemples

Dans la première position de la table pour insérer une nouvelle ligne:

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

Essayez »


Table Object Reference Table Object