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;
}
本文地址:https://www.stayed.cn/item/4116
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我