html5 资源预取功能link prefetching

1.预加载网站

<link rel="next" href="page2.html">

2.预加载图片

<link rel="prefetch" href="/images/big.jpeg">

3.预加载css

<link rel="prefetch alternate stylesheet" title="Designed for Mozilla" href="mozspecific.css">

如对上述原理存在疑问,请查阅html加载原理和缓存加载

网络请求优化DNS预取

<link rel="dns-prefetch" href="http://si1.s1.dpfile.com/"/>

阻止DNS预取

<meta http-equiv=”x-dns-prefetch-control” content=”off”>


你可能感兴趣的:(html5 资源预取功能link prefetching)