Yani daha önce ben bu soruyu sordum: JQuery Login Redirect. Code Included
Php dosyası aşağıdaki gönderiyor:
$return['error'] = false;
$return['msg'] = 'You have successfully logged in!!';
Ben php ve ajax ucunda hatayı alıntı, tüm önerileri denedim, 2 yerine 3, ben de bir başka ifadesi olarak aynı olmalıdır DNE doğrudur denedim eşittir:
$(document).ready(function(){
$('#submit').click(function() {
$('#waiting').show(500);
$('#empty').show(500);
$('#reg').hide(0);
$('#message').hide(0);
$.ajax({
type : 'POST',
url : 'logina.php',
dataType : 'json',
data: {
type : $('#typeof').val(),
login : $('#login').val(),
pass : $('#pass').val(),
},
success : function(data){
$('#waiting').hide(500);
$('#empty').show(500);
$('#message').removeClass().addClass((data.error === true) ? 'error' : 'success')
.text(data.msg).show(500)
if(data.error != true)
window.location.replace("http://blahblah.com/usercp.php");
if (data.error === true)
$('#reg').show(500);
$('#empty').hide()
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
$('#waiting').hide(500);
$('#message').removeClass().addClass('error')
.text("There was an Error. Please try again.").show(500);
$('#reg').show(500);
$('#empty').hide();
Recaptcha.reload();
}
});
return false;
});
Ve hala alışkanlık iş. Herhangi bir giriş başarılı ve hata false döndürürse bir yönlendirme çalışması yapmak için nasıl bir fikir? Soruyorum Ayrıca ederken, ben sonunda bir .delay(3000)
3s koymak window.location.replace("http://blahblah.com/usercp.php")
? Olabilir