aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenno-Wu <55138460+Benno-Wu@users.noreply.github.com>2021-05-05 20:18:00 +0800
committerIrvin <irvinfly@gmail.com>2021-05-06 17:21:03 +0800
commite5f70a041ddb81183945e73c841a6307cc17c8a8 (patch)
treec78c7f564bc3a6442b91d0806766fdfd5dc29644
parentad9ceaec12f11bb4f8329ccfc8e84db84edf77c5 (diff)
downloadtranslated-content-e5f70a041ddb81183945e73c841a6307cc17c8a8.tar.gz
translated-content-e5f70a041ddb81183945e73c841a6307cc17c8a8.tar.bz2
translated-content-e5f70a041ddb81183945e73c841a6307cc17c8a8.zip
Fix: Translation Error on History.go()
-rw-r--r--files/zh-cn/web/api/history/index.html2
1 files changed, 1 insertions, 1 deletions
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
<div class="note"><strong>Note:</strong> 当浏览器历史栈处于最顶端时( 当前页面处于最后一页时 )调用此方法没有效果也不报错。</div>
</dd>
<dt>{{domxref("History.go()")}}</dt>
- <dd>通过当前页面的相对位置从浏览器历史记录( 会话记录 )加载页面。比如:参数为-1的时候为上一页,参数为1的时候为下一页. 当整数参数超出界限时( 译者注:原文为When <code><em>integerDelta</em></code> is out of bounds ),例如: 如果当前页为第一页,前面已经没有页面了,我传参的值为-1,那么这个方法没有任何效果也不会报错。调用没有参数的 <code>go() </code>方法或者不是整数的参数时也没有效果。( 这点与支持字符串作为url参数的IE有点不同)。</dd>
+ <dd>通过当前页面的相对位置从浏览器历史记录( 会话记录 )加载页面。比如:参数为-1的时候为上一页,参数为1的时候为下一页. 当整数参数超出界限时( 译者注:原文为When <code><em>integerDelta</em></code> is out of bounds ),例如: 如果当前页为第一页,前面已经没有页面了,我传参的值为-1,那么这个方法没有任何效果也不会报错。调用没有参数的 <code>go() </code>方法或者参数值为0时,重新载入当前页面。( 这点与支持字符串作为url参数的IE有点不同)。</dd>
<dt>{{domxref("History.pushState()")}} {{ gecko_minversion_inline("2.0") }}</dt>
<dd>按指定的名称和URL(如果提供该参数)将数据push进会话历史栈,数据被DOM进行不透明处理;你可以指定任何可以被序列化的javascript对象。注意到Firefox现在忽略了这个title参数,更多的信息,请看<a href="/zh-CN/docs/Web/API/History_API" title="en/DOM/Manipulating the browser history">manipulating the browser history</a>。
<div class="note"><strong>Note:</strong> 在 Gecko 2.0 {{ geckoRelease("2.0") }} 到 Gecko 5.0 {{ geckoRelease("5.0") }}中, 被传递的对象使用JSON进行序列化. 从 Gecko 6.0 {{ geckoRelease("6.0") }}开始,使用<a href="/en/DOM/The_structured_clone_algorithm">结构化克隆算法</a>进行序列化。这样,就可以让更多类型的对象被安全地传输。</div>