function ajax_post(){
  $.post("a.php",{email:$('#email').val(),address:$('#address').val()},
  function(data){
    //$('#msg').html("please enter the email!");
    //alert(data);
    $('#msg').html(data);
  },
  "text");//这里返回的类型有:json,html,xml,text
}
返回的这个 data 是a.php的html源码吗?还是其它什么东西?
谢谢!