مثال
إنشاء <tfoot> العنصر (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>";
انها محاولة لنفسك » تعريف والاستخدام
و createTFoot() الأسلوب بإنشاء فارغة <tfoot> عنصر ويضيفه الى طاولة المفاوضات.
Note: إذا كان <tfoot> عنصر موجود بالفعل على الطاولة، و createTFoot() الأسلوب بإرجاع موجودة، ولا إنشاء واحدة جديدة.
ملاحظة: <tfoot> العنصر يجب أن يكون واحد أو أكثر <tr> علامات الداخل.
Tip: لإزالة <tfoot> عنصر من جدول، استخدم deleteTFoot() الأسلوب.
دعم المتصفح
طريقة | |||||
---|---|---|---|---|---|
createTFoot() | نعم فعلا | نعم فعلا | نعم فعلا | نعم فعلا | نعم فعلا |
بناء الجملة
tableObject .createTFoot()
المعلمات
لا شيء |
تفاصيل تقنية
قيمة الإرجاع: | تم إنشاؤه حديثا (or an existing) <tfoot> العنصر |
---|
مزيد من الأمثلة
مثال
إنشاء وحذف <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> العلامة
<كائن الجدول