当我点击下一页时,我的代码有问题>>>页面刷新两次。<<<可以停止吗?对不起我糟糕的英语
代码
jQuery(document).ready(function() {
$(".container").css("display", "none");
$(".container").fadeIn(1000);
$("a.pager").click(function(event){
event.preventDefault();
linkLocation = this.href;
jQuery(".container").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}});
非常感谢