En son web geliştirme öğreticiler
 

tablo createTHead() Method

<Tablo Nesnesi

Örnek

Bir oluşturma <thead> elemanı (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>";
Kendin dene "

Tanımı ve Kullanımı

createTHead() yöntem boş oluşturur <thead> elemanı ve masaya ekler.

Note: Bir ederse <thead> eleman zaten masanın üzerinde var, createTHead() metodu mevcut bir döndürür ve yeni bir tane oluşturmaz.

Not: <thead> eleman bir veya daha fazla olması gerekir <tr> içeride etiketleri.

Tip: kaldırmak için <thead> , bir tablodan eleman kullanmak deleteTHead() metodu.


Tarayıcı Desteği

Yöntem
createTHead() Evet Evet Evet Evet Evet

Sözdizimi

tableObject .createTHead()

Parametreler

Yok

Teknik detaylar

Geri dönüş değeri: Yeni oluşturulan (or an existing) <thead> eleman

Diğer Örnekler

Örnek

Oluşturma ve silme <thead> elemanı:

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();
}
Kendin dene "

İlgili Sayfalar

HTML referansı: HTML <thead> etiketi


<Tablo Nesnesi