运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <style> .democlass {color:red} </style> <body> <h1>HTML DOM Elements</h1> <h2>The setAttribute() Method </h2> <p>Set the first H1's class attribute to "democlass".</p> <script> const element = document.getElementsByTagName("H1")[0]; element.setAttribute("class", "democlass"); </script> </body> </html>