我正在使用 jQuery 通过淡出内容并在页面加载时将其淡入来进行页面转换,但我的问题是当我单击我的链接并调用我的点击函数并重定向它在页面顶部加载的页面时。有没有办法可以防止这种行为?这是我的页面转换的点击功能,在此先感谢您的帮助!
关联
<a href="../categories/categories.php"></a>
jQuery
$(".content").fadeIn(750);
$("a").click(function(event){
event.preventDefault();
linkLocation = this.href;
$(".content").fadeOut(500, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}