运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <style> .democlass {color:red} </style> <body> <h1>HTML DOM Attributes</h1> <h2>The setNamedItem() Method </h2> <p>Set the first H1's class attribute to "democlass".</p> <script> const nodeMap = document.getElementsByTagName("H1")[0].attributes; const node = document.createAttribute("class"); node.value = "democlass"; nodeMap.setNamedItem(node); </script> </body> </html>