jquery Submission form mvc3 background processing example

  • 2020-12-09 00:48:41
  • OfStack

JQuery submits the form


$(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 Background processing:


[HttpPost]
        public ActionResult Login(string account, string psword)
        {
            JsonResult result;
            if ("" == account && "" == psword)
                result = this.Json("");             
            else
            {
                result=this.Json(" Incorrect user or password ");                
            }           
            return result;

        }


Related articles: