在线求请教 坛内高人 ~~~关于post数据并跳转到页面的问题~~~

 function processJson(data) {  
        $('#ISModifyPost').val('');
        if (data.status=="true")
        { 
      

         if(data.msg.length>100){window.location = (data.msg);}
            else{}
             
        } 
        else
        {
                if(data.msg=="redirect"){ShowErrorMsgandAutoClose("button3" ,"邮箱激活地址于五分钟前成功发送,请查收");setTimeout(function(){

window.location.href =(data.url);

},1000);}
           else{ ShowErrorMsgandAutoClose(data.controlid ,data.msg);     
            $('#'+data.controlid).focus();}
        }
    } 
    

我的js代码是这样的 这是一个ajaxfrom的回调函数 我在判断data.status=="true"的时候 想要跳转到另外一个页面,但是之前我用的是 window.location.href =("ModifyEmail02.html?redirect=true&s=<%=Lable_s%>"); 这种方式跳转并传递参数,现在 我想问 有没有办法让页面跳转到ModifyEmail02.html 但是参数的传递时post方式 ~~~求指教 ~~

你可能感兴趣的:(在线求请教 坛内高人 ~~~关于post数据并跳转到页面的问题~~~)