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 参考手册:HTML <section> 标签