aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/html_dom_api
diff options
context:
space:
mode:
authorElan Bin <yhbflydream@gmail.com>2021-07-11 19:10:32 +0800
committerGitHub <noreply@github.com>2021-07-11 19:10:32 +0800
commit7e9a06c0e3dcce027266e048675efaa5fad9ea93 (patch)
tree1f7d1ffd6b11155ff126ed7d80bad5beae06d6eb /files/zh-cn/web/api/html_dom_api
parent16f1d0e099881070190827716def0e0b657f6bda (diff)
downloadtranslated-content-7e9a06c0e3dcce027266e048675efaa5fad9ea93.tar.gz
translated-content-7e9a06c0e3dcce027266e048675efaa5fad9ea93.tar.bz2
translated-content-7e9a06c0e3dcce027266e048675efaa5fad9ea93.zip
fix: the '主线程' jump to the correct link, zh-CN (#1484)
fix: the '主线程' jump to the correct link '主线程' has been translated
Diffstat (limited to 'files/zh-cn/web/api/html_dom_api')
-rw-r--r--files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
index 14e1139cfc..827393f1ea 100644
--- a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
+++ b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
@@ -114,7 +114,7 @@ greetUser("Veronica");</pre>
<p>每个代理都是由<strong>事件循环</strong>驱动的,事件循环负责收集用事件(包括用户事件以及其他非用户事件等)、对任务进行排队以便在合适的时候执行回调。然后它执行所有处于等待中的 JavaScript 任务(宏任务),然后是微任务,然后在开始下一次循环之前执行一些必要的渲染和绘制操作。</p>
-<p>网页或者 app 的代码和浏览器本身的用户界面程序运行在相同的 <strong>{{Glossary("线程")}}</strong>中, 共享相同的 <strong>事件循环</strong>。 该线程就是 <strong>{{Glossary("主线程")}}</strong>,它除了运行网页本身的代码之外,还负责收集和派发用户和其它事件,以及渲染和绘制网页内容等。</p>
+<p>网页或者 app 的代码和浏览器本身的用户界面程序运行在相同的 <strong>{{Glossary("线程")}}</strong>中, 共享相同的 <strong>事件循环</strong>。 该线程就是 <strong>{{Glossary("main thread", "主线程")}}</strong>,它除了运行网页本身的代码之外,还负责收集和派发用户和其它事件,以及渲染和绘制网页内容等。</p>
<p>然后,事件循环会驱动发生在浏览器中与用户交互有关的一切,但在这里,对我们来说更重要的是需要了解它是如何负责调度和执行在其线程中执行的每段代码的。</p>