tutorial pengembangan web terbaru
 

Meja createTFoot() Method

<Table Object

Contoh

Buat <tfoot> elemen (and insert a <tr> and <td> element to it) :

// Find a <table> element with id="myTable":
var table = document.getElementById("myTable");

// Create an empty <tfoot> element and add it to the table:
var footer = table.createTFoot();

// Create an empty <tr> element and add it to the first position of <tfoot> :
var row = footer.insertRow(0);     

// Insert a new cell (<td>) at the first position of the "new" <tr> element:
var cell = row.insertCell(0);

// Add some bold text in the new cell:
cell.innerHTML = "<b>This is a table footer</b>";
Cobalah sendiri "

Definisi dan Penggunaan

The createTFoot() metode menciptakan kosong <tfoot> elemen dan menambahkan ke meja.

Note: Jika <tfoot> elemen sudah ada di meja, createTFoot() metode mengembalikan yang sudah ada, dan tidak membuat yang baru.

Catatan: <tfoot> elemen harus memiliki satu atau lebih <tr> tag di dalam.

Tip: Untuk menghapus <tfoot> elemen dari tabel, gunakan deleteTFoot() metode.


Dukungan Browser

metode
createTFoot() iya nih iya nih iya nih iya nih iya nih

Sintaksis

tableObject .createTFoot()

parameter

tak satupun

Rincian teknis

Kembali Nilai: Yang baru dibuat (or an existing) <tfoot> elemen

Contoh lebih

Contoh

Membuat dan menghapus <tfoot> elemen:

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();
}
Cobalah sendiri "

Pages terkait

Referensi HTML: HTML <tfoot> tag


<Table Object