jquery 的 ajax 程式 簡單的

來源:互聯網
上載者:User
瞭解ajax, json,ashx,例子是一個當你使用者名稱輸入使用者名稱,請求頁面進行比對處理 例子很簡單但是讓初學者可以更好的理解query中的ajax

Javascript: Javascript代碼 
  1. <script src="js/jquery-1.4.2.js" type="text/javascript"></script>  
  2. <script type="text/javascript">  
  3. function alertMsg()  
  4. {  
  5.     var user={"id":"","pwd":""};  
  6.     user.id= $("input:text").val();  
  7.     user.pwd=$("input:password").val();          
  8.     $.ajax({  
  9.             url: "HandleAjax.ashx",//這裡的請求頁面建議大家使用ashx 一般處理常式 相當於一個輕量級的aspx 這裡的對資料的處理沒有必要那麼大費周折的使用aspx,也算是對效能做了一點點小貢獻吧  
  10.                 data: "user="+user.id,  
  11.                 datatype: "json",//請求頁面返回的資料類型  
  12.                 type: "GET",  
  13.                 contentType: "application/json",//注意請求頁面的contentType 要於此處保持一致  
  14.                 success:function(data) {//這裡的data是由請求頁面返回的資料  
  15.                     alert(data.result);  
  16.                 },  
  17.                 error: function(XMLHttpRequest, textStatus, errorThrown) {  
  18.                     alert("XMLHttpRequest");  
  19.                     }  
  20.             });  
  21.   
  22. }  
    <script src="js/jquery-1.4.2.js" type="text/javascript"></script>     <script type="text/javascript">     function alertMsg()     {         var user={"id":"","pwd":""};         user.id= $("input:text").val();         user.pwd=$("input:password").val();                 $.ajax({                 url: "HandleAjax.ashx",//這裡的請求頁面建議大家使用ashx 一般處理常式 相當於一個輕量級的aspx 這裡的對資料的處理沒有必要那麼大費周折的使用aspx,也算是對效能做了一點點小貢獻吧                     data: "user="+user.id,                     datatype: "json",//請求頁面返回的資料類型                     type: "GET",                     contentType: "application/json",//注意請求頁面的contentType 要於此處保持一致                     success:function(data) {//這裡的data是由請求頁面返回的資料                         alert(data.result);                     },                     error: function(XMLHttpRequest, textStatus, errorThrown) {                         alert("XMLHttpRequest");                         }                 });      } 

Html: Html代碼 

  1. <body>  
  2.     使用者名稱:<input id="id" type="text" name="id" />  
  3.     密碼:<input id="pwd" type="password" name="pwd" />  
  4.       
  5.   
  6.     <input id="submit" type="button" name="sub" value="submit" onclick="alertMsg();" />  
  7. </body>  
<body>     使用者名稱:<input id="id" type="text" name="id" />     密碼:<input id="pwd" type="password" name="pwd" />           <input id="submit" type="button" name="sub" value="submit" onclick="alertMsg();" /> </body> 

請求頁面 ashx C#代碼 

  1. <%@ WebHandler Language="C#" Class="HandleAjax" %>  
  2.   
  3. using System;  
  4. using System.Web;  
  5.   
  6. public class HandleAjax : IHttpHandler {  
  7.       
  8.     public void ProcessRequest (HttpContext context) {  
  9.         context.Response.ContentType = "application/json";  
  10.         if (context.Request["user"] == "jiayou")  
  11.         {  
  12.             string hello="OK";  
  13.             context.Response.Write("{\"result\":\""+hello+"\"}");//注意格式”key”:”value” 這裡的格式我寫錯了好幾次才改正確的  
  14.         }  
  15.         else { context.Response.Write("{\"result\":\"Hello pig\""); }  
  16.     }  
  17.    
  18.     public bool IsReusable {  
  19.         get {  
  20.             return false;  
  21.         }  
  22.     }  
  23. }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.