当前位置:首页 >> 网络编程

jquery提交表单mvc3后台处理示例

编辑:jimmy
  日期: 2024/10/16 浏览:1 次

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;

        }

上一篇: 在C#中生成与PHP一样的MD5 Hash Code的方法
下一篇: http调用webservice操作httprequest、httpresponse示例