在我的代碼我無法重定向到新頁面時登錄是正確的,而不是「window.location.href」,window.location.replace是working.how使此代碼工作window.location.href不工作在我的代碼,但window.location.replace工作
$(document).ready(function(){
$('#login').click(function(){
$('.errordisp').empty();
var spgremail=$('#mailid').val();
var spgrpwd=$('#pwd').val();
if(spgremail=='' || spgrpwd==''){
var txt=$('#errormsg8').text();
$('.errordisp').append(txt);//removeClass('hidden').addClass('errordisp');
}
else
{
$.post("in.php",{email: spgremail,pass: spgrpwd},function(data) {
if(data)
{
window.location.href("http://abcd.com/discover.php");
}
else
{
txt=$('#errormsg3').text();
$('.errordisp').append(txt);
}
});
}
});
});