gpt4 book ai didi

Jquery 页面切换器

转载 作者:太空宇宙 更新时间:2023-11-04 15:23:39 25 4
gpt4 key购买 nike

我对这段代码有疑问当我点击下一页时>>>一个页面刷新两次。<<<有可能停下来吗?抱歉我的英语不好

代码


jQuery(文档).ready(函数() {



$(".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;
}});

非常感谢

最佳答案

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

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

关于Jquery 页面切换器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14291714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com