在上传内容后重定向到网址

时间:2011-07-22 03:50:07

标签: jquery

我有这段代码:

$(".removeall").dblclick(function () { 
                $(this).parent().slideUp(); 
                });

我现在想要发生的事情,使用jquery,是在完成后重定向到main.php

1 个答案:

答案 0 :(得分:2)

这应该可以解决问题:

$(".removeall").dblclick(function(){
    // The slideUp function takes two parameters, a 'speed' for the animation, and
    // a callback method to be called once the animation is done.
    $(this).parent().slideUp("fast", function(){
        window.location = "/main.php";
    });
});

您可以阅读有关slideUp方法here的更多信息。