HTML DOM Section องค์ประกอบ
ตัวแปร Section
ตัวแปร Section แสดงถึงส่วน HTML <section>
หมายเหตุ:Internet Explorer 8 และรุ่นเก่ากว่าไม่สนับสนุนส่วน <section>
เข้าถึงตัวแปร Section
คุณสามารถใช้ getElementById() ในการเข้าถึงส่วน <section> ได้
var x = document.getElementById("mySection");
สร้างตัวแปร Section
คุณสามารถใช้ document.createElement() โมดูลเพื่อสร้างองค์ประกอบ <section> ได้
var x = document.createElement("SECTION");
หน้าที่เกี่ยวข้อง
คู่มือเกี่ยวกับ HTMLตามรูปแบบ <section> ของ HTML