最新的Web開發教程
 

deleteTFoot() Method

<表對象

刪除<tfoot>從表元素:

document.getElementById("myTable").deleteTFoot();
試一試»

定義和用法

所述deleteTFoot()方法去除<tfoot>元件(and its content)從表中。

Tip:要創建新的<tfoot>為表元素,使用createTFoot()方法。


瀏覽器支持

方法
deleteTFoot()

句法

tableObject .deleteTFoot()

參數

沒有

技術細節

返回值: 無返回值

更多示例

創建和刪除一個<tfoot>元素:

function myCreateFunction() {
    var table = document.getElementById("myTable");
    var footer = table.createTFoot();
    var row = footer.insertRow(0);
    var cell = row.insertCell(0);
    cell.innerHTML = "<b>This is a table footer</b>";
}

function myDeleteFunction() {
    document.getElementById("myTable").deleteTFoot();
}
試一試»

相關頁面

HTML參考: HTML <tfoot>標籤


<表對象