HTML DOM Header 对象
JavaScript基础 2022-05-13 16:18:48小码哥的IT人生shichen
HTML DOM Header 对象
Header 对象
Header 对象代表 HTML <header> 元素。
注释:Internet Explorer 8 以及更早的版本不支持 <header> 元素。
访问 Header 对象
您可使用 getElementById()
来访问 <header>
元素:
示例代码:
var x = document.getElementById("myHeader");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 HEADER 元素的演示</h3>
<article>
<header id="myHeader">
<h3>Internet Explorer 9</h3>
</header>
<p>Windows Internet Explorer 9 (abbreviated as IE9) was released to
the public on March 14, 2011 at 21:00 PDT.....</p>
</article>
<p>单击按钮将标题元素的颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myHeader");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Header 对象
您可使用 document.createElement()
方法来创建 <header>
元素:
示例代码:
var x = document.createElement("HEADER");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建一个 HEADER 元素,其中包含一个带有一些文本的 h3 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("HEADER");
x.setAttribute("id", "myHeader");
document.body.appendChild(x);
var y = document.createElement("H3");
var t = document.createTextNode("This is a h3 element in a header element");
y.appendChild(t);
document.getElementById("myHeader").appendChild(y);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html