Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: A1lo <[email protected]>
  • Loading branch information
T34-active and yin1999 authored Dec 20, 2024
1 parent 8c9b628 commit cd54066
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/zh-cn/web/api/history/back/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ l10n:

{{APIRef("History API")}}

{{domxref("History")}} 接口的 **`back()`** 方法使浏览器在会话历史中返回一页
{{domxref("History")}} 接口的 **`back()`** 方法使浏览器在会话历史中后退一页

它的效果与调用 {{domxref("History.go", "history.go(-1)")}} 相同。如果没有上一页,此方法调用将无效
它的效果与调用 {{domxref("History.go", "history.go(-1)")}} 相同。如果没有上一页,此方法调用不执行任何操作

此方法是{{glossary("asynchronous", "异步")}}的。请添加一个监听器来监听 {{domxref("Window/popstate_event", "popstate")}} 事件,以便确定导航何时完成。

Expand All @@ -34,12 +34,12 @@ back()

## 示例

以下简短示例会导致页面上的按钮导航回到会话历史记录中的上一页
以下简短示例会导致页面上的按钮导航回到会话历史记录中的上一个条目

### HTML

```html
<button id="go-back">返回!</button>
<button id="go-back">后退!</button>
```

### JavaScript
Expand Down

0 comments on commit cd54066

Please sign in to comment.