Skip to content

Commit

Permalink
Update the content of the Why use dns-prefetch? section
Browse files Browse the repository at this point in the history
  • Loading branch information
codersjj authored Nov 2, 2023
1 parent 0e0687a commit be07932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/zh-cn/web/performance/dns-prefetch/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ slug: Web/Performance/dns-prefetch

## 为什么要使用 dns-prefetch?

当浏览器从(第三方)服务器请求资源时,必须先将该[跨源](/zh-CN/docs/Web/HTTP/CORS)域名解析为 IP 地址,然后浏览器才能发出请求。此过程称为 DNS 解析。DNS 缓存可以帮助减少此延迟, DNS 解析可以导致请求增加明显的延迟。对于打开了与许多第三方的连接的网站,此延迟可能会大大降低加载性能。
当浏览器从(第三方)服务器请求资源时,必须先将该[跨源](/zh-CN/docs/Web/HTTP/CORS)域名解析为 IP 地址,然后浏览器才能发出请求。此过程称为 DNS 解析。虽然 DNS 缓存可以帮助减少此延迟, DNS 解析可能会给请求增加明显的延迟。对于打开了与许多第三方的连接的网站,此延迟可能会大大降低加载性能。

`dns-prefetch` 可帮助开发人员掩盖 DNS 解析延迟。[HTML `<link>` 元素](/zh-CN/docs/Web/HTML/Element/link)通过 `dns-prefetch`[`rel` 属性](/zh-CN/docs/Web/HTML/Attributes/rel)值提供此功能。然后在 [href 属性](/zh-CN/docs/Web/HTML/Attributes)中指明要[跨源](/zh-CN/docs/Web/HTTP/CORS)的域名:

Expand Down

0 comments on commit be07932

Please sign in to comment.