运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <p>Peter's score: <meter id="myMeter" value="0.3" high="0.9" low="0.1" optimum="0.5"></meter></p> <p>Click the button to change the value of the optimum attribute of the gauge above.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myMeter").optimum = "0.7"; document.getElementById("demo").innerHTML = "The value of the optimum attribute was changed from '0.5' to '0.7'."; } </script> </body> </html>