jQuery的$.post请求传值——返回值为json格式

来源:互联网 发布:matlab cell数组 编辑:程序博客网 时间:2024/05/27 02:30

jQuery.post(url, [data][callback][type])

url,[data],[callback],[type]String,Map,Function,StringV1.0

url:发送请求地址。

data:待发送 Key/value 参数。

callback:发送成功时回调函数。

type:返回内容格式,xml, html, script, json, text, _default。


首先讲解返回值为json格式的实例

获得 test.php 页面返回的 json 格式的内容::

jQuery 代码:
$.post("test.php", { "func": "getNameAndTime" },   function(data){     alert(data.name); // John     console.log(data.time); //  2pm   }, "json");

HTML页面:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<form id="ajaxform" name="ajaxform" method="post" action="action.php">
    <p>
    email<input type="text" name="email" id="email"/>
    
    </p>
    <p>
    address<input type="text" name="address" id="address"/>
    </p>
    <p id="msg"></p>
    <p>    
        <input name="Submit" type="button" value="submit" onclick="return checkemail()"/>
    </p>
</form>
</body>


<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("test.php",{email:$('#email').val(),address:$('#address').val()},
  function(data){
    //$('#msg').html("please enter the email!");
    //alert(data);
    var data = eval(data);
    $('#msg').html(data.b);

  },
  "json");//这里返回的类型有:json,html,xml,text
}
</script>
</html>

PHP页面:

<?php
$email = $_POST["email"];
$address = $_POST["address"];
//echo $email;
//echo $address;
//echo "success";


$arr = array ('a'=>'success','b'=>$email,'c'=>3,'d'=>4,'e'=>5);
echo json_encode($arr);

?>

0 0
原创粉丝点击