From e5f70a041ddb81183945e73c841a6307cc17c8a8 Mon Sep 17 00:00:00 2001 From: Benno-Wu <55138460+Benno-Wu@users.noreply.github.com> Date: Wed, 5 May 2021 20:18:00 +0800 Subject: Fix: Translation Error on History.go() --- files/zh-cn/web/api/history/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn/web/api') diff --git a/files/zh-cn/web/api/history/index.html b/files/zh-cn/web/api/history/index.html index 83b6c18d0e..d12cba08b4 100644 --- a/files/zh-cn/web/api/history/index.html +++ b/files/zh-cn/web/api/history/index.html @@ -34,7 +34,7 @@ translation_of: Web/API/History
Note: 当浏览器历史栈处于最顶端时( 当前页面处于最后一页时 )调用此方法没有效果也不报错。
{{domxref("History.go()")}}
-
通过当前页面的相对位置从浏览器历史记录( 会话记录 )加载页面。比如:参数为-1的时候为上一页,参数为1的时候为下一页. 当整数参数超出界限时( 译者注:原文为When integerDelta is out of bounds ),例如: 如果当前页为第一页,前面已经没有页面了,我传参的值为-1,那么这个方法没有任何效果也不会报错。调用没有参数的 go() 方法或者不是整数的参数时也没有效果。( 这点与支持字符串作为url参数的IE有点不同)。
+
通过当前页面的相对位置从浏览器历史记录( 会话记录 )加载页面。比如:参数为-1的时候为上一页,参数为1的时候为下一页. 当整数参数超出界限时( 译者注:原文为When integerDelta is out of bounds ),例如: 如果当前页为第一页,前面已经没有页面了,我传参的值为-1,那么这个方法没有任何效果也不会报错。调用没有参数的 go() 方法或者参数值为0时,重新载入当前页面。( 这点与支持字符串作为url参数的IE有点不同)。
{{domxref("History.pushState()")}} {{ gecko_minversion_inline("2.0") }}
按指定的名称和URL(如果提供该参数)将数据push进会话历史栈,数据被DOM进行不透明处理;你可以指定任何可以被序列化的javascript对象。注意到Firefox现在忽略了这个title参数,更多的信息,请看manipulating the browser history
Note: 在 Gecko 2.0 {{ geckoRelease("2.0") }} 到 Gecko 5.0 {{ geckoRelease("5.0") }}中, 被传递的对象使用JSON进行序列化. 从 Gecko 6.0 {{ geckoRelease("6.0") }}开始,使用结构化克隆算法进行序列化。这样,就可以让更多类型的对象被安全地传输。
-- cgit v1.2.3-54-g00ecf