HTML DOM Section 对象
JavaScript基础 2022-05-13 16:22:38小码哥的IT人生shichen
HTML DOM Section 对象
Section 对象
Section 对象代表 HTML <section>
元素。
注释:Internet Explorer 8 以及更早的版本不支持 <section>
元素。
访问 Section 对象
您可使用 getElementById()
来访问 <section>
元素:
示例代码:
var x = document.getElementById("mySection");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 SECTION 元素的演示</h3>
<section id="mySection">
<h1>Section Heading</h1>
<p>Some text in section..</p>
</section>
<p>单击按钮将节内容的文本颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("mySection");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Section 对象
您可使用 document.createElement()
方法来创建 <section>
元素:
示例代码:
var x = document.createElement("SECTION");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可创建包含 H1 和 P 元素的 SECTION 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("SECTION");
x.setAttribute("id", "mySection");
document.body.appendChild(x);
var heading = document.createElement("H1");
var txt1 = document.createTextNode("Section Heading");
heading.appendChild(txt1);
document.getElementById("mySection").appendChild(heading);
var para = document.createElement("P");
var txt2 = document.createTextNode("Some text in section..");
para.appendChild(txt2);
document.getElementById("mySection").appendChild(para);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <section> 标签