From 0c0562074662bad77401d591c9e9a5902968fa5e Mon Sep 17 00:00:00 2001 From: qianguyihao Date: Sat, 23 May 2020 19:07:18 +0800 Subject: [PATCH] fix #99 --- 01-HTML/10-HTML5详解(二).md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/01-HTML/10-HTML5详解(二).md b/01-HTML/10-HTML5详解(二).md index 4c94a06..d58cf43 100644 --- a/01-HTML/10-HTML5详解(二).md +++ b/01-HTML/10-HTML5详解(二).md @@ -320,11 +320,17 @@ `window.history`对象可以让我们管理历史记录,可用于单页面应用,Single Page Application,可以无刷新改变网页内容。 -1. window.history.forward(); // 前进 -2. window.history.back(); // 后退 -3. window.history.go(); // 刷新 -4. 通过JS可以加入一个访问状态 -5. history.pushState; //放入历史中的状态数据, 设置title(现在浏览器不支持改变历史状态) +- window.history.forward(); // 前进 + +- window.history.back(); // 后退 + +- window.history.go(); // 刷新 + +- window.history.go(n); //n=1 表示前进;n=-1 后退;n=0s 刷新。如果移动的位置超出了访问历史的边界,会静默失败,但不会报错。 + +- 通过JS可以加入一个访问状态 + +- history.pushState; //放入历史中的状态数据, 设置title(现在浏览器不支持改变历史状态)