php中ajax和json簡單的使用

程序代碼:php

<html>
<head>
<title>AJAX的簡單使用</title>
</head>
<script src="../jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function (){
   $("#tijiao").click(function(){
       $.ajax({
          type:"post",                  //數據發送方式
          url:"./returnData.php",        //後臺處理程序
          dataType:"json",                //接收數據格式
          data:$("input").serialize(), //序列化提交的值
          success:function(msg){
         // alert(msg.name+msg.password);
             var backdata = "你輸入的姓名是:"+msg.name+"<br>你輸入的密碼是:"+msg.password;
             $("#backdata").html(backdata);
             $("#backdata").css({color:"red"});
          }
       });
   });
});
</script>
<body>
 姓名:<input type="text" id="name" name="name"></br>
 密碼:<input type="password" id="password" name="password"></br>
 <span id="backdata"></span></br>
 <input type="button" id="tijiao"  value="提交數據">
</body>
</html>

returnData.php:css

<?php
 echo json_encode($_POST);
?>

演示效果:html

相關文章
相關標籤/搜索