Table deleteTFoot() 方法
描述
deleteTFoot() 方法从表格中移除 <tfoot> 元素(及其内容)。
提示: 要为表格创建一个新的 <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> 标签
❮ 表格对象