HTML DOM TableRow 对象


HTML DOM TableRow 对象表示 HTML 文档的 <tr> 元素。

创建 TableRow 对象

语法

以下是语法 -

document.createElement(“TR”);

TableRow 对象的属性

属性说明
rowIndex它返回表的行集合中某行的位置。
sectionRowIndex它返回表头、表主体或表尾的行集合中某行的位置。

TableRow 对象的方法

方法说明
deleteCell()它从当前表格行中移除单元格。
insertCell()它在当前表格行中添加单元格。

让我们看一个 TableRow 对象示例

示例

 实时演示

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
      text-align: center;
   }
   table {
      margin: 2rem auto;
      width: 400px;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
</style>
<body>
<h1>DOM TableRow Object Demo</h1>
<table border="2">
<thead>
<tr>
<th>Name</th>
<th>Language</th>
</tr>
<thead>
<tbody class="table-body">
<tr>
<td>John</td>
<td>English</td>
</tr>
<tr>
<td>Elon</td>
<td>Germany</td>
</tr>
</tbody>
</table>
<button onclick="get()" class="btn">Create TableRow</button>
<script>
   function get() {
      var tr = document.createElement("TR");
      tr.innerHTML = "<td>Mario</td><td>French</td>"
      document.querySelector(".table-body").appendChild(tr);
   }
</script>
</body>
</html>

输出

单击“创建 TableRow”以创建表格行。

更新时间:20-Sep-2019

65 次浏览

开启您的 职业生涯

通过完成课程,获得认证

开始
广告