<script type="text/javascript">
function check(){$(function(){  
  $("#getjson").bind("click",function(){
  $.ajax({
  type: "POST",
  url: "/index.php",
  data: "name="+$("#username").val(),
  success: function(msg){  
  alert(msg);  此处获得返回值后如何在function check()里return false?  }  });
  });
})}
</script>