ตัวอย่าง
สร้าง <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> แท็ก
<object ตาราง