为什么Web Workers不允许修改dom

发布于 2024-11-29 18:15:15 字数 208 浏览 1 评论 0原文

我知道Web Workers作为一个独立的线程而不是UI线程工作,但我不明白为什么他们不允许修改DOM。我的意思是,您可以允许线程间通信并将 DOM 数据保存在共享空间中,并让 Web Workers 线程修改 DOM。为什么浏览器不允许这样做?

I know web workers work as a separate thread than the UI thread but i dont understand why they are not allowed to modify the DOM. I mean that you can allow inter thread communication and keep the DOM data in a shared space and have the web workers thread modify the DOM. Why is this not allowed in browsers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

今天小雨转甜 2024-12-06 18:15:15

因为 DOM 不是线程安全的,并且 JavaScript 不公开线程 API。


另请参阅:

Because the DOM is not threadsafe, and JavaScript does not expose a thread API.


See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文