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').f<span style="color:transparent">~来1源gaodai#ma#com搞*代#码1网</span><abbr>搞代gaodaima码</abbr>ocus; 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");//这里返回的类型有:json,html,xml,text}</script><body> <p> email </p> <p> address </p> <p id="msg"></p> <p> </p></code>
被传递到的页面的代码为:
<code> <body><?php echo json_encode(array('email'=>$_POST['email'])); echo json_encode(array('address'=>$_POST['address']));?></code>