1234567891011121314151617181920212223 |
- <html>
- <body>
- <script>
- // 创建一个h1元素
- var h1Element = document.createElement("h1");
- // 设置h1元素的文本内容
- h1Element.textContent = "火元素";
- // 设置h1元素的颜色为红色
- h1Element.style.color = "red";
- // 将h1元素添加到body元素中(你也可以选择添加到其他合适的父元素里)
- document.body.appendChild(h1Element);
- </script>
- </body>
- </html>
|