記事のタイトル「アフィリエイトのために生まれた」は実際には大げさですが、
プリフェッチ
は実際にはWebページの読み込み速度を向上させるためのものですが、たとえば、ユーザーエクスペリエンスを向上させるためにプリロードを通じて実装されています。 、ユーザーは 2 秒間ホームページに滞在し、この 2 秒以内にユーザーが開きたいページがすでに読み込まれているため、ユーザー エクスペリエンスも非常に優れています
HTML5。プリレンダリング/プリフェッチ名詞の説明
プリフェッチの使い方:
It should be used for fetching and caching resources for later user navigation as per the official HTML5 spec (i.e. prefetching a css file to be used in a page which highly likely to be used by the user in his upcoming navigation). Supported in Chrome, Firefox & IE.
簡単に言うと、次のWebページのリソースをキャッシュすることを意味します。サポートされているブラウザはChrome (13以降)です。 Firefox、IE 11
prerenderの使用法:
It should be used for prerendering a complete page that the user will highly likely navigate to it in his upcoming navigation (i.e. like prerendering the next article where it is highly likely that the user will click on “next article” button). Supported only in Chrome & IE.
is actually part of the HTML 5 spec. appears to be Google doing their own thing.
var myHead = document.getElementsByTagName(‘head’)[0]; var myLink = document.createElement(‘link’); myLink.setAttribute(‘rel’, ‘prerender’); myLink.setAttribute(‘href’, ‘http://apple.com/ipad’); myHead.appendChild(myLink);
無料のh5オンラインビデオチュートリアル
2. php.cnオリジナルのhtml5ビデオチュートリアル
以上がHTML5 プリフェッチ/プリレンダーとは何ですか? HTML5 でのプリフェッチ/プリレンダリングの導入の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。