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

编程学习 2021-07-04 22:41www.dzhlxh.cn编程入门
这篇文章主要介绍了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;

        }

Copyright © 2016-2025 www.dzhlxh.cn 金源码 版权所有 Power by

网站模板下载|网络推广|微博营销|seo优化|视频营销|网络营销|微信营销|网站建设|织梦模板|小程序模板