首页域名资讯 正文

告诉你jquery如何提交表单mvc3后台处理示例

2025-01-01 4 0条评论

下面介绍jquery提交表单mvc3后台处理示例。

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;
        }





纵横数据面向全国提供域名注册、虚拟主机、云服务器、服务器托管与租用,如需了解,请联系QQ: 171356849 微信:zh18159893430 咨询,谢谢!  

 

文章版权及转载声明

本文作者:亿网 网址:https://edns.com/ask/post/145816.html 发布于 2025-01-01
文章转载或复制请以超链接形式并注明出处。