本篇文章主要是對jquery中$.post()方法的簡單實例進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
在jqery中有這樣一個方法,$.post()下面就這個方法做一個簡單的實例:
jQuery.post( url, [data], [callback], [type] ) :
使用POST方式來進行非同步請求
參數:
#url (String) : 發送請求的URL位址.
data (Map) : (可選) 要傳送給伺服器的數據,以Key/value 的鍵值對形式表示。
callback (Function) : (可選) 載入成功時回呼函數(只有當Response的回傳狀態是success才是呼叫該方法)。
type (String) : (可選)官方的說明是:Type of data to be sent。其實應該為客戶端請求的型別(JSON,XML,等等)
1.html頁面(index.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 type="text/javascript" src=\'#\'" /jquery-1.3.2.js"></script> <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("action.php",{email:$('#email').val(),address:$('#address').val()}, function(data){ //$('#msg').html("please enter the email!"); //alert(data); $('#msg').html(data); }, "text");//这里返回的类型有:json,html,xml,text } </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> </html>
2.php頁面(action.php)
#程式碼如下:
<?php $email = $_POST["email"]; $address = $_POST["address"]; //echo $email; //echo $address; echo "success"; ?>
說明:當點擊按鈕時,注意按鈕現在的類型是button.在不使用$.post()方法時,按鈕類型是submit,這樣submit提交form裡的數據,採用post方法傳遞到頁面action.php,這時在頁面action.php中就能接受到傳過來的資料。當採用$.post方法時,我們在函數ajax_post()方法中其實就是使用了post的方法。 (要引用jquery庫檔案)
以上是jquery中$.post()方法的簡單實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!