小码哥的IT人生

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

标准属性和事件

Header 对象支持标准属性事件

相关页面

HTML 教程:HTML5 语义元素

HTML 参考手册:HTML <header> 标签

JavaScript 参考手册:HTML DOM Footer 对象

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024