运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Closures</h2> <p>Counting with a local variable.</p> <button type="button" onclick="myFunction()">Count!</button> <p id="demo">0</p> <script> const add = (function () { let counter = 0; return function () {counter += 1; return counter;} })(); function myFunction(){ document.getElementById("demo").innerHTML = add(); } </script> </body> </html>