HTML DOM 快速導覽 - 元素物件 <tr> (HTMLTableRowElement)

<tr> 為 HTML 文件的表格元素 (tabular data) , DOM 介面為 HTMLTableRowElement 。



取得 <tr> 的元素物件 (object) 後,可存取元素的全域屬性 (global attribute) 。 HTMLTableRowElement 另有定義屬性與方法
  • rowIndex
  • sectionRowIndex
  • cells
  • insertCell()
  • deleteCell()


rowIndex 為列數的索引值, sectionRowIndex 為 <tbody> 、 <thead> 、 <tfoot> 中列數的索引值, cell 為列中 <td> 或 <th> 的數量, insertCell() 與 deleteCell() 則是用來插入或刪除 <td> 或 <th> 。舉例如下
function run() {
    var d = document.getElementsByTagName("tr");
    d[0].deleteCell(1);
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:htmldemo124.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例用 document 物件的 getElementsByTagName() 方法 (method) ,取得標籤名稱為 tr 的 HTMLCollection 物件,文件的第一個 <tr> 元素亦即該 HTMLCollection 索引值為 0 的物件
var d = document.getElementsByTagName("tfoot");
d[0].deleteRow(0);


然後呼叫 deleteCell() 刪除索引值為 1 的 <td> 或 <th> ,也就是第二個 <td> 或 <th> 。


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="htmldemo124.js" type="text/javascript"></script>
</head>
<body>
<table frame="box" rules="groups" style="width:25%;text-align:center;margin:10px">
<colgroup><col></col><col></col></colgroup>
<colgroup><col></col><col></col></colgroup>
<caption>Demo Table</caption>
<tbody>
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
<tr><td>5</td><td>6</td><td>7</td><td>8</td></tr>
</tbody>
</table>
<input type="button" value="RUN" onclick="run();">
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:htmldemo124.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器 (browser) 開啟,按 RUN 後如下



中英文術語對照
表格元素tabular data
物件object
全域屬性global attribute
方法method
屬性attribute
瀏覽器broswer


您可以繼續參考
HTML 5 範例

HTML 元素物件


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/HTMLTableRowElement
https://developer.mozilla.org/en/HTML/Element/tr
http://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#the-tr-element

沒有留言: