Exemple
Créer un <tfoot> élément (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>";
Essayez vous - même » Définition et utilisation
Le createTFoot() méthode crée un vide <tfoot> élément et ajoute à la table.
Note: Si un <tfoot> élément existe déjà sur la table, la createTFoot() méthode retourne l'existant, et ne crée pas une nouvelle.
Remarque: Le <tfoot> élément doit avoir un ou plusieurs <tr> balises à l' intérieur.
Tip: Pour supprimer le <tfoot> élément d'une table, utilisez la deleteTFoot() méthode.
Support du navigateur
méthode | |||||
---|---|---|---|---|---|
createTFoot() | Oui | Oui | Oui | Oui | Oui |
Syntaxe
tableObject .createTFoot()
Paramètres
Aucun |
Détails techniques
Valeur de retour: | Le nouveau (or an existing) <tfoot> élément |
---|
autres exemples
Exemple
Créer et supprimer un <tfoot> élément:
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();
}
Essayez vous - même » Pages associées
Référence HTML: HTML <tfoot> balise
<Table objet