JS window对象 History 对象 history对象记录了用户曾经浏览过的页面(URL),并可以实现浏览器前进与后退相似导航的功能。语法: window.history.[属性|方法]
History 对象
任务
补充右边编辑器第8行,获取浏览器历史列表中的URL数量。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>History对象</title> </head> <script type="text/javascript"> var HL = window.history.length ; document.write(HL); </script> <body> </body> </html>