最新的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>标签


<表对象