程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> jquery提交表單mvc3後台處理示例

jquery提交表單mvc3後台處理示例

編輯:ASP.NET基礎

JQuery提交表單

復制代碼 代碼如下:
$(document).ready(function () {
           $("#btnLogin").click(function () {
               $.ajax({
                   url: '/Home/Login',
                   data: '{ "account":"' + $("#account").val() + '", "psword": "' + $("#psword").val() + '" }',
                   type: "post",
                   contentType: "application/json;charset=utf-8",
                   dataType: "json"
                   ,
                   success: function (data) {
                       if (data != "")
                           alert(data);
                       else
                           location.href = "/Home/Index"                  
                   }
               });
           });
       });

mvc3後台處理:

復制代碼 代碼如下:
[HttpPost]
        public ActionResult Login(string account, string psword)
        {
            JsonResult result;
            if ("" == account && "" == psword)
                result = this.Json("");            
            else
            {
                result=this.Json("用戶或密碼不正確");               
            }          
            return result;

        }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved