123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div id="box"></div>
- <button id="btn">按钮</button>
- <script>
- var oBxo = document.querySelector("#box");
- var oBtn = document.querySelector("#btn");
- var i = 1;
- var obj = {};
- oBtn.onclick = function(){
- history.pushState(i,"");
- var str = `第${i}个页面`
- oBxo.innerText = str;
- obj[i] = str;
- // console.log(history);
- i++;
- }
- window.onpopstate = function(e){
- console.log(e)
- oBxo.innerText = obj[e.state]
- }
- </script>
- </body>
- </html>
|