مثال
إنشاء <thead> العنصر (and insert a <tr> and <td> element to it) :
// Find a <table> element with id="myTable":
var table = document.getElementById("myTable");
// Create an empty <thead> element and add it to the table:
var header =
table.createTHead();
// Create an empty <tr> element and add it to
the first position of <thead> :
var row =
header.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 header</b>";
انها محاولة لنفسك » تعريف والاستخدام
و createTHead() الأسلوب بإنشاء فارغة <thead> عنصر ويضيفه الى طاولة المفاوضات.
Note: إذا كان <thead> عنصر موجود بالفعل على الطاولة، و createTHead() الأسلوب بإرجاع موجودة، ولا إنشاء واحدة جديدة.
ملاحظة: <thead> العنصر يجب أن يكون واحد أو أكثر <tr> علامات الداخل.
Tip: لإزالة <thead> عنصر من جدول، استخدم deleteTHead() الأسلوب.
دعم المتصفح
طريقة | |||||
---|---|---|---|---|---|
createTHead() | نعم فعلا | نعم فعلا | نعم فعلا | نعم فعلا | نعم فعلا |
بناء الجملة
tableObject .createTHead()
المعلمات
لا شيء |
تفاصيل تقنية
قيمة الإرجاع: | تم إنشاؤه حديثا (or an existing) <thead> العنصر |
---|
مزيد من الأمثلة
مثال
إنشاء وحذف <thead> العنصر:
function myCreateFunction() {
var table =
document.getElementById("myTable");
var header =
table.createTHead();
var row = header.insertRow(0);
var cell = row.insertCell(0);
cell.innerHTML =
"<b>This is a table header</b>";
}
function myDeleteFunction() {
document.getElementById("myTable").deleteTHead();
}
انها محاولة لنفسك » صفحات ذات صلة
إشارة HTML: HTML <thead> العلامة
<كائن الجدول