运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The sessionStorage Object</h2> <p>A Counter:</p> <p id="demo">0</p> <p><button onclick="clickCounter()" type="button">Count</button></p> <p>Click to see the counter increase.</p> <p>Close the browser tab (or window), and try again, and the counter is reset.</p> <script> function clickCounter() { if (sessionStorage.clickcount) { sessionStorage.clickcount = Number(sessionStorage.clickcount) + 1; } else { sessionStorage.clickcount = 1; } document.getElementById("demo").innerHTML = sessionStorage.clickcount; } </script> </body> </html>