如何在事件后重定向到jquery中的页面

时间:2012-07-02 11:47:08

标签: jquery redirect

$('.enter_web_button').click(function(){  
  $('.loading_logo').animate({
     left:'40%'  
  },1000);

 $('.nav_business').animate({
 left:'100%' 
 },1000,function(){ 
 $(this).hide(1000);

    // go to test.php           
 });

});

完成活动后我想将页面重定向到test.php.how来做..? 三江源

3 个答案:

答案 0 :(得分:1)

您需要使用location.href

window.location.href = 'text.php';

答案 1 :(得分:1)

您可以使用window.location.replace,如下所述:

window.location.replace('text.php')

您可以使用window.location.href,如下所述:

window.location.href = 'text.php'

答案 2 :(得分:0)

另一种方法是使用location.assign如下:

location.assign('your_page.php');

有关详细信息,请查看Mozilla文档:Mozilla MDN Docs