jquery提交表单mvc3后台处理示例
时间:2021-07-25 08:39:53|栏目:.NET代码|点击: 次
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;
}
上一篇:ASP.NET Core自动生成小写破折号路由的实现方法
栏 目:.NET代码
下一篇:c#实现51单片机频率计的代码分享(数字频率计设计)
本文标题:jquery提交表单mvc3后台处理示例
本文地址:http://www.codeinn.net/misctech/161360.html






