diff options
author | julieng <julien.gattelier@gmail.com> | 2021-08-04 18:32:17 +0200 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-08-05 23:24:20 +0800 |
commit | 9b2427e4648e3cc9002c87274aeb8360a391fa0f (patch) | |
tree | 980160decd45c7706ace94bad41cf2f03764d8f5 /files/zh-cn/web | |
parent | 2aa3dd6b1d2336993ae870976b9067e155e602dd (diff) | |
download | translated-content-9b2427e4648e3cc9002c87274aeb8360a391fa0f.tar.gz translated-content-9b2427e4648e3cc9002c87274aeb8360a391fa0f.tar.bz2 translated-content-9b2427e4648e3cc9002c87274aeb8360a391fa0f.zip |
Fixes #1634 - remove old compat site for zh-CN and zh-TW
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r-- | files/zh-cn/web/api/element/keydown_event/index.html | 2 | ||||
-rw-r--r-- | files/zh-cn/web/api/element/keyup_event/index.html | 2 | ||||
-rw-r--r-- | files/zh-cn/web/api/navigator/buildid/index.html | 6 | ||||
-rw-r--r-- | files/zh-cn/web/api/worker/index.html | 2 |
4 files changed, 4 insertions, 8 deletions
diff --git a/files/zh-cn/web/api/element/keydown_event/index.html b/files/zh-cn/web/api/element/keydown_event/index.html index 2576b577f2..56777100fb 100644 --- a/files/zh-cn/web/api/element/keydown_event/index.html +++ b/files/zh-cn/web/api/element/keydown_event/index.html @@ -38,7 +38,7 @@ translation_of: Web/API/Element/keydown_event <p>键盘事件只能由 <code><inputs></code>, <code><textarea></code> 以及任何具有 <code>contentEditable</code> 或 <code>tabindex="-1"</code>属性的组件触发。</p> -<p>自 Firefox 65起, <code>keydown</code> 与 <code><a href="/en-US/docs/Web/API/Element/keyup_event">keyup</a></code> 事件会在IME(输入法编辑器)复合事件中被触发,目的是为了提升CJKT(中日韩台地区)用户跨浏览器性能, ({{bug(354358)}},更多详情访问 <a href="https://www.fxsitecompat.com/en-CA/docs/2018/keydown-and-keyup-events-are-now-fired-during-ime-composition/">keydown and keyup events are now fired during IME composition</a> ). 若要忽略复合事件中所有 <code>keydown</code> 事件, 可以按照如下代码修改 (229是某个在IME中触发的键盘事件对应的 <code>keyCode</code>):</p> +<p>自 Firefox 65起, <code>keydown</code> 与 <code><a href="/en-US/docs/Web/API/Element/keyup_event">keyup</a></code> 事件会在IME(输入法编辑器)复合事件中被触发,目的是为了提升CJKT(中日韩台地区)用户跨浏览器性能, ({{bug(354358)}}). 若要忽略复合事件中所有 <code>keydown</code> 事件, 可以按照如下代码修改 (229是某个在IME中触发的键盘事件对应的 <code>keyCode</code>):</p> <pre class="brush: js">eventTarget.addEventListener("keydown", event => { if (event.isComposing || event.keyCode === 229) { diff --git a/files/zh-cn/web/api/element/keyup_event/index.html b/files/zh-cn/web/api/element/keyup_event/index.html index 17df6b0336..1a56ecfa2d 100644 --- a/files/zh-cn/web/api/element/keyup_event/index.html +++ b/files/zh-cn/web/api/element/keyup_event/index.html @@ -32,7 +32,7 @@ translation_of: Web/API/Element/keyup_event <p><code><a href="/en-US/docs/Web/API/Element/keydown_event">keydown</a></code> 和 <code>keyup</code> 事件提供指出哪个键被按下的代码,而 <code>keypress</code> 指出哪些字符被输入。例如,小写字母 “a” 在 <code>keydown</code> 和 <code>keyup</code> 时会被报告为 65,但在 <code>keypress</code> 时为 97。所有事件均将大写字母 “A” 报告为 65。</p> -<p>从 Firefox 65 开始,<code>keyup</code> 和 <code><a href="/en-US/docs/Web/API/Element/keydown_event">keydown</a></code> 事件在 IME 编辑时也会被触发,以提升 CJKT 用户的跨浏览器兼容性({{bug(354358)}},另请参阅 <a href="https://www.fxsitecompat.com/en-CA/docs/2018/keydown-and-keyup-events-are-now-fired-during-ime-composition/">keydown and keyup events are now fired during IME composition</a> 获取更多有用的详情)。要忽略 IME 编辑时的所有 <code>keyup</code> 事件,请执行以下操作(229 是一个关于被 IME 加工过的事件的 <code>keyCode</code> 的特殊值 ):</p> +<p>从 Firefox 65 开始,<code>keyup</code> 和 <code><a href="/en-US/docs/Web/API/Element/keydown_event">keydown</a></code> 事件在 IME 编辑时也会被触发,以提升 CJKT 用户的跨浏览器兼容性({{bug(354358)}})。要忽略 IME 编辑时的所有 <code>keyup</code> 事件,请执行以下操作(229 是一个关于被 IME 加工过的事件的 <code>keyCode</code> 的特殊值 ):</p> <pre class="brush: js">eventTarget.addEventListener("keyup", event => { if (event.isComposing || event.keyCode === 229) { diff --git a/files/zh-cn/web/api/navigator/buildid/index.html b/files/zh-cn/web/api/navigator/buildid/index.html index 8e9d5fa3d0..bb79355571 100644 --- a/files/zh-cn/web/api/navigator/buildid/index.html +++ b/files/zh-cn/web/api/navigator/buildid/index.html @@ -32,8 +32,4 @@ translation_of: Web/API/Navigator/buildID <h2 id="浏览器兼容性">浏览器兼容性</h2> -<p>{{Compat("api.Navigator.buildID")}}</p> - -<h2 id="另请参阅">另请参阅</h2> - -<p><a href="https://www.fxsitecompat.com/en-CA/docs/2018/navigator-buildid-now-returns-a-fixed-timestamp/">navigator.buildID 现在返回一个固定的时间戳。</a></p> +<p>{{Compat("api.Navigator.buildID")}}</p>
\ No newline at end of file diff --git a/files/zh-cn/web/api/worker/index.html b/files/zh-cn/web/api/worker/index.html index 24d6bbc738..3084311247 100644 --- a/files/zh-cn/web/api/worker/index.html +++ b/files/zh-cn/web/api/worker/index.html @@ -94,7 +94,7 @@ first.onchange = function() { <h3 id="跨域行为的错误事件">跨域行为的错误事件</h3> -<p>浏览器的早期版本中,加载跨域的执行者脚本导致 <code>SecurityError</code>事件。根据规范的变更,而新版本的浏览器只有{{event("error")}}事件发生。关于如何处理这种事件的更多信息参考 <a href="https://www.fxsitecompat.com/en-CA/docs/2016/loading-cross-origin-worker-now-fires-error-event-instead-of-throwing-worker-in-sandboxed-iframe-no-longer-allowed/">Loading cross-origin worker now fires error event instead of throwing; worker in sandboxed iframe no longer allowed</a>.</p> +<p>浏览器的早期版本中,加载跨域的执行者脚本导致 <code>SecurityError</code>事件。根据规范的变更,而新版本的浏览器只有{{event("error")}}事件发生</p> <h2 id="相关链接">相关链接</h2> |