jQuery动画回调无法正常工作

时间:2010-04-25 16:21:52

标签: jquery jquery-animate

嘿,如果有人能帮助我,那么我将不胜感激。基本上,我希望在此动画完成后导航到新页面。使用下面的代码,动画工作正常,但导航不会发生。

有没有人有任何想法或建议?非常感谢,蒂姆

$("a").click(function(event){
    event.preventDefault();
    var driver = $(this).attr('href');

   $(".content-center").animate({height: "0px"}, 500, function(){
        navigate(driver);
    });
});

1 个答案:

答案 0 :(得分:3)

并非所有浏览器都支持navigate功能。相反,使用:

window.location.href = driver;