0
$('.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 to do it..?谢谢你

4

3 回答 3

1

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

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

或者

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

window.location.href = 'text.php'
于 2012-07-02T11:51:46.850 回答
1

您需要为此location.href使用

window.location.href = 'text.php';
于 2012-07-02T11:48:00.930 回答
0

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

location.assign('your_page.php');

有关更多信息,请查看 Mozilla 文档:Mozilla MDN Docs

于 2012-07-02T11:53:02.850 回答