aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web
diff options
context:
space:
mode:
authorChen Peng <chen56@msn.com>2021-09-28 22:20:07 +0800
committerGitHub <noreply@github.com>2021-09-28 22:20:07 +0800
commit708d9e69fecf607ed87912061b6a7dab637e3677 (patch)
tree33cfc898aed9ac406ac19b2c57ade7826f3adc65 /files/zh-cn/web
parent34eab4569727144926d24ccd7702b371fc97ace6 (diff)
downloadtranslated-content-708d9e69fecf607ed87912061b6a7dab637e3677.tar.gz
translated-content-708d9e69fecf607ed87912061b6a7dab637e3677.tar.bz2
translated-content-708d9e69fecf607ed87912061b6a7dab637e3677.zip
fix broken link (#2421)
链接错误,多了个前缀”/“
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r--files/zh-cn/web/api/html_dom_api/microtask_guide/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/html_dom_api/microtask_guide/index.html b/files/zh-cn/web/api/html_dom_api/microtask_guide/index.html
index e2af5268a5..7c3b742283 100644
--- a/files/zh-cn/web/api/html_dom_api/microtask_guide/index.html
+++ b/files/zh-cn/web/api/html_dom_api/microtask_guide/index.html
@@ -7,7 +7,7 @@ translation_of: Web/API/HTML_DOM_API/Microtask_guide
<p><span class="seoSummary">一个 <strong>微任务(microtask)</strong>就是一个简短的函数,当创建该函数的函数执行之后,<em>并且</em> 只有当 Javascript 调用栈为空,而控制权尚未返还给被 {{Glossary("user agent")}} 用来驱动脚本执行环境的事件循环之前,该微任务才会被执行。</span> 事件循环既可能是浏览器的主事件循环也可能是被一个 <a href="/en-US/docs/Web/API/Web_Workers_API">web worker</a> 所驱动的事件循环。这使得给定的函数在没有其他脚本执行干扰的情况下运行,也保证了微任务能在用户代理有机会对该微任务带来的行为做出反应之前运行。</p>
-<p>JavaScript 中的 <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">promises</a> 和 <a href="//en-US/docs/Web/API/Mutation_Observer_API">Mutation Observer API</a> 都使用微任务队列去运行它们的回调函数,但当能够推迟工作直到当前事件循环过程完结时,也是可以执行微任务的时机。为了允许第三方库、框架、polyfills 能使用微任务,{{domxref("Window")}} 暴露了 {{domxref("WindowOrWorkerGlobalScope.queueMicrotask", "queueMicrotask()")}} 方法,而 {{domxref("Worker")}} 接口则通过{{domxref("WindowOrWorkerGlobalScope")}} mixin 提供了同名的 queueMicrotask() 方法。</p>
+<p>JavaScript 中的 <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise">promises</a> 和 <a href="/en-US/docs/Web/API/Mutation_Observer_API">Mutation Observer API</a> 都使用微任务队列去运行它们的回调函数,但当能够推迟工作直到当前事件循环过程完结时,也是可以执行微任务的时机。为了允许第三方库、框架、polyfills 能使用微任务,{{domxref("Window")}} 暴露了 {{domxref("WindowOrWorkerGlobalScope.queueMicrotask", "queueMicrotask()")}} 方法,而 {{domxref("Worker")}} 接口则通过{{domxref("WindowOrWorkerGlobalScope")}} mixin 提供了同名的 queueMicrotask() 方法。</p>
<h2 id="任务_vs_微任务">任务 vs 微任务</h2>