码迷,mamicode.com
首页 > Web开发 > 详细

jQuery Ajax: $.post请求实例

时间:2015-06-23 01:00:13      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:jquery ajax .post请求实

jQuery Ajax: $.post请求实例

leyangjun.html页面

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="./jquery-2.0.0.min.js"></script>
<script>
 $(document).ready(function(){
  $("#sub").click(function(){
   $.post("leyangjun.php",{name:$("#name").val()},function(data,textStatus){
    $("#result").append("data:"+data.name);
$("#result").append("<br>age:"+data.age);
    $("#result").append("<br>textStatus:"+textStatus);
   },"json");
   return false;
  });
 });
</script>
</head>
<body>
<form action="testPost.php" method="post">
 <input type="text" name="name" id="name" >
 <input type="submit" id="sub" value="提交">
</form>
<h2>页面显示回来的内容</h2>
<div id="result"></div>
</body>

</html>


对应的页面leyangjun.php

<?php 
echo json_encode(
array(
"name" => $_POST[‘name‘],
"age" => 110,
)
);
?>

jQuery Ajax: $.post请求实例

标签:jquery ajax .post请求实

原文地址:http://blog.csdn.net/leyangjun/article/details/46596805

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!