Skip to content

Commit

Permalink
zh-cn: fix typo (#25173)
Browse files Browse the repository at this point in the history
  • Loading branch information
RiverCui authored Dec 20, 2024
1 parent a630027 commit 0ffd6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/zh-cn/web/api/window/setimmediate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var immediateID = setImmediate(func);

- {{DOMxRef("Window.postMessage", "postMessage()")}} 可以被用来触发一个 immediate 但会产生回调。请注意,Internet Explorer 8 包含 postMessage 的同步版本,这意味着它不能被用来作为代替品。
- [MessageChannel](/zh-CN/docs/Web/API/MessageChannel) 可以在 Web Workers 内部很好的被使用,而 postMessage 的语义意味着它不能在那使用。
- `setTimeout(fn, 0)` *可以*使用,然而按照 [HTML 规范](https://html.spec.whatwg.org/multipage/webappapis.html#timers),嵌套深度超过 5 级的定时器,会被限制在 4 浩渺,它没有为 `setImmediate` 的天然及时性提供合适的 polyfill。
- `setTimeout(fn, 0)` *可以*使用,然而按照 [HTML 规范](https://html.spec.whatwg.org/multipage/webappapis.html#timers),嵌套深度超过 5 级的定时器,会被限制在 4 毫秒,它没有为 `setImmediate` 的天然及时性提供合适的 polyfill。

所有这些技术都被纳入 [robust setImmediate polyfill](https://github.com/NobleJS/setImmediate) 中。

Expand Down

0 comments on commit 0ffd6ae

Please sign in to comment.