$('.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来做..? 三江源
答案 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)