HTML DOM Heading 对象
JavaScript基础 2022-05-13 16:18:51小码哥的IT人生shichen
HTML DOM Heading 对象
Heading 对象
Heading 对象代表 HTML 标题元素:<h1> 到 <h6>。
访问 Heading 对象
您可使用 getElementById()
来访问标题元素:
示例代码:
var x = document.getElementById("myHeading");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 H2 元素的演示</h3>
<h2 id="myHeading">This is a h2 element.</h2>
<p>单击按钮将 h2 元素的颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myHeading");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Heading 对象
您可使用 document.createElement()
方法来创建标题元素:
示例代码:
var x = document.createElement("H1");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建带有一些文本的 H1 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("H1");
var t = document.createTextNode("Welcome to My Homepage");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html