运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { color: red; } </style> </head> <body> <h1>Set initial with JavaScript</h1> <div> <h1 id="bc">Hello World</h1> <ul> <li id="a">Item one</li> <li id="b">Item two</li> <li id="c">Item three</li> </ul> </div> <p>Click the "Try it" button to set the value of the color property to "initial" for the second list item:</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("b").style.color = "initial"; } </script> </body> </html>