定義と使用法
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>タグ
<テーブルオブジェクト