最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jQuery使用$.ajax提交表單完整實(shí)例

 更新時(shí)間:2015年12月11日 14:54:46   作者:zhouhb  
這篇文章主要介紹了jQuery使用$.ajax提交表單的方法,以完整實(shí)例形式分析了jQuery基于ajax數(shù)據(jù)提交的具體步驟與數(shù)據(jù)處理技巧,非常簡(jiǎn)單實(shí)用,代碼備有詳盡的注釋便于理解,需要的朋友可以參考下

本文實(shí)例講述了jQuery使用$.ajax提交表單的方法。分享給大家供大家參考,具體如下:

首先,新建Login.html頁(yè)面:

<!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>
 <title>$.ajax()方法發(fā)送請(qǐng)求</title>
 <script type="text/javascript" src="jquery-1.4.1.js"></script>
 <style type="text/css">
  body
  {
   font-size: 13px;
  }
  .divFrame
  {
   width: 225px;
   border: solid 1px #666;
  }
  .divFrame .divTitle
  {
   padding: 5px;
   background-color: #eee;
   height: 23px;
  }
  .divFrame .divTitle span
  {
   float: left;
   padding: 2px;
   padding-top: 5px;
  }
  .divFrame .divContent
  {
   padding: 8px;
   text-align: center;
  }
  .divFrame .divContent .clsShow
  {
   font-size: 14px;
   line-height: 2.0em;
  }
  .divFrame .divContent .clsShow .clsError
  {
   font-size: 13px;
   border: solid 1px #cc3300;
   padding: 2px;
   display: none;
   margin-bottom: 5px;
   background-color: #ffe0a3;
  }
  .txt
  {
   border: #666 1px solid;
   padding: 2px;
   width: 150px;
   margin-right: 3px;
  }
  .btn
  {
   border: #666 1px solid;
   padding: 2px;
   width: 50px;
  }
 </style>
 <script type="text/javascript">
  $(function () {
   $("#txtName").focus();//輸入焦點(diǎn)
   $("#txtName").keydown(function (event) {
    if (event.which == "13") {//回車(chē)鍵,移動(dòng)光標(biāo)到密碼框
     $("#txtPass").focus();
    }
   });
   $("#txtPass").keydown(function (event) {
    if (event.which == "13") {//回車(chē)鍵,用.ajax提交表單
     $("#btnLogin").trigger("click");
    }
   });
   $("#btnLogin").click(function () { //“登錄”按鈕單擊事件
    //獲取用戶名稱(chēng)
    var strTxtName = encodeURI($("#txtName").val());
    //獲取輸入密碼
    var strTxtPass = encodeURI($("#txtPass").val());
    //開(kāi)始發(fā)送數(shù)據(jù)
    $.ajax
    ({ //請(qǐng)求登錄處理頁(yè)
     url: "Login.aspx", //登錄處理頁(yè)
     dataType: "html",
     //傳送請(qǐng)求數(shù)據(jù)
     data: { txtName: strTxtName, txtPass: strTxtPass },
     success: function (strValue) { //登錄成功后返回的數(shù)據(jù)
      //根據(jù)返回值進(jìn)行狀態(tài)顯示
      if (strValue == "True") {//注意是True,不是true
       $(".clsShow").html("操作提示,登錄成功!" + strValue);
      }
      else {
       $("#divError").show().html("用戶名或密碼錯(cuò)誤!" + strValue);
      }
     }
    })
   })
  })
 </script>
</head>
<body>
 <form id="frmUserLogin">
 <div class="divFrame">
  <div class="divTitle">
   <span>用戶登錄</span>
  </div>
  <div class="divContent">
   <div class="clsShow">
    <div id="divError" class="clsError">
    </div>
    <div>
     名稱(chēng):<input id="txtName" type="text" class="txt" /></div>
    <div>
     密碼:<input id="txtPass" type="password" class="txt" /></div>
    <div>
     <input id="btnLogin" type="button" value="登錄" class="btn" />&nbsp;&nbsp
     <input id="btnReset" type="reset" value="取消" class="btn" />
    </div>
   </div>
  </div>
 </div>
 </form>
</body>
</html>

然后,新建Login.aspx,接收并處理數(shù)據(jù):

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="JSDemo.Login" ResponseEncoding="gb2312"%>
<%
 string strName = System.Web.HttpUtility.UrlDecode(Request["txtName"]);
 string strPass = System.Web.HttpUtility.UrlDecode(Request["txtPass"]);
 bool login = false;
 if (strName == "admin" && strPass == "admin")
 {
  login = true;
 }
 Response.Write(login);
%>

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

荆州市| 桃园县| 百色市| 玉山县| 抚宁县| 荔波县| 永定县| 阿坝县| 绥德县| 阳江市| 临城县| 新田县| 苍山县| 磐石市| 缙云县| 祁东县| 阳信县| 庆云县| 法库县| 抚顺市| 济南市| 兴城市| 彰化市| 西畴县| 罗江县| 祥云县| 巩义市| 阳城县| 中牟县| 滨海县| 清流县| 延边| 通城县| 顺平县| 静宁县| 石阡县| 绥化市| 克什克腾旗| 渝中区| 泉州市| 洱源县|