表insertRow()方法用於創建空的<tr>元素,該元素可以添加到表中。通常用於在表中的指定索引處插入新行。 <tr>元素包含至少一個<th>或<td>元素。
用法
tableObject.insertRow(index)
使用參數
- index:用於指定要插入的行的位置。值0導致在第一位置插入新行,而值-1可用於在最後位置插入新行。
以下示例程序旨在說明表insertRow()方法:
示例1:在表格的第一個位置插入新行。
<!DOCTYPE html>
<html>
<head>
<title>Table insertRow() method in HTML</title>
<style>
table,
td {
border:1px solid green;
}
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Table insertRow() method</h2>
<p>To add a new row at the first
position of the table, double-click
the "Add Row" button.</p>
<table id="Courses"
align="center">
<tr>
<td>Java</td>
<td>Fork Java</td>
</tr>
<tr>
<td>Python</td>
<td>Fork Python</td>
</tr>
</table>
<br>
<button ondblclick="row()">
Add Row
</button>
<script>
function row() {
var MyTable =
document.getElementById("Courses");
// insert new row.
var NewRow = MyTable.insertRow(0);
var Newcell1 = NewRow.insertCell(0);
var Newcell2 = NewRow.insertCell(1);
Newcell1.innerHTML = "Placement";
Newcell2.innerHTML = "Sudo Placement";
}
</script>
</body>
</html>
輸出:
單擊按鈕後
支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- 火狐瀏覽器
- 穀歌瀏覽器
- Opera
相關用法
- HTML DOM Table createCaption()用法及代碼示例
- HTML DOM Table deleteCaption()用法及代碼示例
- HTML DOM Table createTHead()用法及代碼示例
- HTML DOM Table deleteRow()用法及代碼示例
- HTML DOM console.table()用法及代碼示例
- HTML DOM Table deleteTHead()用法及代碼示例
- HTML DOM Table createTFoot()用法及代碼示例
- HTML DOM Table deleteTFoot()用法及代碼示例
- HTML DOM Table用法及代碼示例
- HTML <table> frame屬性用法及代碼示例
- HTML <table> width屬性用法及代碼示例
- HTML <table> summary屬性用法及代碼示例
- HTML <table> cellspacing屬性用法及代碼示例
- HTML <table> rules屬性用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Table insertRow() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。