Jquery页面切换器

时间:2013-01-12 08:37:26

标签: jquery css load refresh switchers

我的代码有问题 当我点击下一页>>>页面刷新两次时。<<< 它有可能停止吗?抱歉我的英语不好

代码

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;
}});

非常感谢

1 个答案:

答案 0 :(得分:1)

您需要停止点击事件的传播(与.preventDefault()不同):

$("a.pager").click(function(event){
  event.preventDefault();
  linkLocation = this.href;
  jQuery(".container").fadeOut(1000, redirectPage);
  return false; // stop propagation of the click event 
});