客戶端代碼: <html> <head> <title>shurubiaoqian</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <script src="jquery-1.7.min.js"></script> <script> $(function(){ $("#yan").click(function(){$.getJSON("b.php", { name: "John", time: "2pm" } ,function(data){ for(var pro in data){ document.write(pro+'-----'+data[pro]+'<br />'); } }); }); }); </script> </head> <body> <form action="" method="post"> <input type="button" id="yan" value="驗(yàn)證用戶名" /></td><td><input style="border:0px;" type="text" id="it" /> </form> </body> </html> 服務(wù)器代碼: <?php $json=json_encode($_GET); echo $json; ?> |
|
來(lái)自: 明天網(wǎng)吧 > 《ajax》