jQueryAjax:$.post請求示例

eddie小英俊發表於2017-11-22

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,
)
);

?

>

本文轉自mfrbuaa部落格園部落格,原文連結:http://www.cnblogs.com/mfrbuaa/p/5038299.html,如需轉載請自行聯絡原作者


相關文章