123456789101112131415161718 |
- <!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>
- <h1>demo</h1>
- <button id="ha">回主页</button>
- <script>
- var ha = document.getElementById("ha");
- ha.onclick = function() {
- history.go(-2)
- }
- </script>
- </body>
- </html>
|