ตัวอย่าง
ลบ <thead> องค์ประกอบจากตาราง:
document.getElementById("myTable").deleteTHead();
ลองตัวเอง» ความหมายและการใช้งาน
deleteTHead() วิธีการเอา <thead> องค์ประกอบ (and its content) จากตาราง
Tip: การสร้างใหม่ <thead> องค์ประกอบสำหรับตารางให้ใช้ createTHead() วิธีการ
สนับสนุนเบราว์เซอร์
วิธี | |||||
---|---|---|---|---|---|
deleteTHead() | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
tableObject .deleteTHead()
พารามิเตอร์
ไม่มี |
รายละเอียดทางเทคนิค
กลับค่า: | ไม่มีค่าตอบแทน |
---|
ตัวอย่างอื่น ๆ
ตัวอย่าง
สร้างและลบ <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 ตาราง