运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <button onClick="setInterval(myCounter, 1000)">Start counter!</button> <p id="demo">Click on the button above and I will count forever.</p> <script> var c = 0; function myCounter() { document.getElementById("demo").innerHTML = ++c; } </script> </body> </html>