ajaxjavascriptpostjqueryphp
<code> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>Untitled Document</title> <script type="text/javascript" src="jquery-1.3.2.js"></script><script type="text/javascript" src="json2.js"></script><script language="javascript">function checkemail(){ if($('#email').val() == ""){ $('#msg').html("please enter the email!"); $('#email').focus; return false; } if($('#address').val() == ""){ $('#msg').html("please enter the address!"); $('#address').focus; return false; } ajax_post(); }function ajax_post(){ $.post("http://localhost:8086/a1.1.php",{email:$('#email').val(),address:$('#address').val()}, function(data){ //$('#msg').html("please enter the email!"); //alert(data); $('#msg').html(data); }, "json");//杩</script></code>