我在HTML页面上使用prefetch / prerender。
<link rel="prefetch" href="example.com" />
我想用JS推迟这个动作。
答案 0 :(得分:0)
也许尝试使用setTimeout和document.write。在chrome中测试并在2秒后加载站点(在网络面板中看到)
window.setTimeout(function() {
document.write("<link rel='prefetch' href='http://www.google.de' />")
}
,2000
);