如果有人单击链接,我正在寻找一种预加载页面内容的解决方案,因为我主要是动态生成页面内容。
例如:
<a href="pagexy.php">click me</a>
$('a').click(function{
$('#preloader').show();
$preloadurl($(this).attr('href')){
done: // Open the URL / show the content
}
});
有没有使这成为可能的插件?如果这也适用于表单提交,那就太好了。