运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> .class1 {background-color:red;width:50px;height:50px} .class2 {background-color:blue;width:50px;height:50px} </style> <body> <h1>HTML DOM Attributes</h1> <h2>The value() Property</h2> <div id="myDiv" class="class1"></div> <p>Click to change the value of the second attribute:</p> <button onclick="myFunction()">Click Me</button> <script> function myFunction() { document.getElementById("myDiv").attributes[1].value = "class2"; } </script> </body> </html>