diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:56:53 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:56:53 +0100 |
commit | fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6 (patch) | |
tree | 7089f49c5dcc5428f29711439ab79ac387caf44f /files/zh-cn/glossary/speculative_parsing | |
parent | 310fd066e91f454b990372ffa30e803cc8120975 (diff) | |
download | translated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.tar.gz translated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.tar.bz2 translated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.zip |
unslug zh-cn: modify
Diffstat (limited to 'files/zh-cn/glossary/speculative_parsing')
-rw-r--r-- | files/zh-cn/glossary/speculative_parsing/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/files/zh-cn/glossary/speculative_parsing/index.html b/files/zh-cn/glossary/speculative_parsing/index.html index bded58d8fd..6d3b064353 100644 --- a/files/zh-cn/glossary/speculative_parsing/index.html +++ b/files/zh-cn/glossary/speculative_parsing/index.html @@ -1,7 +1,8 @@ --- title: 对页面预解析进行优化 -slug: Web/HTML/Optimizing_your_pages_for_speculative_parsing +slug: Glossary/speculative_parsing translation_of: Glossary/speculative_parsing +original_slug: Web/HTML/Optimizing_your_pages_for_speculative_parsing --- <p>在传统的浏览器中,HTML 解析器运行于主线程之中,并且在遇到 </script> 标签后会被阻塞,直到脚本从网络中被获取和执行。 Firefox 4 和后续的版本支持从主线程中分离的预解析技术。 当脚本在获取和执行的过程中,预解析技术能提前解析HTML文档。在Firefox 3.5 和 3.6中, HTML 解析器能够在文档流中预先加载脚本、层叠样式表和图片。然而, 在Firefox 4 和后续的版本中 HTML 解析器也预先运行HTML 树构建算法。 这一举措的优点是当预解析成功后,就没有必要再重新解析已经扫描过并且成功下载的脚本,层叠样式表和图片;缺点就是当预解析失败之后,有很多工作需要去做。</p> |