W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!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>