我使用jquery提交登录表单,其中包含以下代码:
$.ajax({ type:'POST', url: 'register_process.php', data:$('#login').serialize(), beforeSend: function() { $('#login_process').html("<img src='img/sloader.gif' />"); }, success: function(response) { $('#login_process').html(response); $("#navbar").load(location.href + " #navbar"); alert(response); if(response="ok") { $(location).attr('href',"log.php"); } } }); return false;
这是我的PHP代码:
class registrylike{
public function set($k,$v){$this->$k=$v;return $this;}
public function get($v){return $this->$v;}
}
但我认为我没有做正确的事情,是否还有其他方法可以捕获来自php的特定条件的jquery post响应?
非常感谢