嘿,我在這裏做錯了什麼?對Ajax非常新穎。JQuery登錄重定向。代碼包括
$(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 === false)
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;
});
});
它登錄得很好,並給出了成功的消息就好了,只是沒有運氣的window.location.replace。我怎樣才能解決這個問題?
測試兩個仍然沒有運氣。謝謝,雖然! – NoviceCoding 2011-01-10 19:50:09
從PHP返回$ data ['錯誤'] ='假';不是$數據['錯誤'] =假; – Diablo 2011-01-10 19:55:54
嘿,如果和else語句在JQuery中有括號,就像他們在php中一樣嗎? – NoviceCoding 2011-01-10 22:43:23