Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML ページでプリフェッチ/プリレンダーを使用しています。
<link rel="prefetch" href="example.com" />
JSを使用してこのアクションを遅らせたい。
setTimeout と document.write を試してみてください。クロムでテストされ、2秒後にサイトがロードされます(ネットワークパネルで見た)
window.setTimeout(function() { document.write("<link rel='prefetch' href='http://www.google.de' />") } ,2000 );