jquery提交表单mvc3后台处理示例 jquery提交表单mvc3后台处理示例
人气:0想了解jquery提交表单mvc3后台处理示例的相关内容吗,在本文为您仔细讲解jquery提交表单mvc3后台处理示例的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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;
}
加载全部内容