显示历史列表中的 URL 数目
- <!DOCTYPE html>
- <html>
- <body>
- <p>显示历史记录列表中的 URL 数量:</p>
- <button onclick="myFunction()">试一试</button>
- <p id="demo"></p>
- <script>
- function myFunction() {
- document.getElementById("demo").innerHTML = history.length;
- }
- </script>
- </body>
- </html>