Latest web development tutorials

HTML DOM 표를 insertRow () 메소드

테이블 객체 참조 표 개체

정의 및 사용

위치를 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>

»시도


테이블 객체 참조 표 개체