我想使用 jquery 在我的文本框更改事件上调用 JSON 方法。
下面是我的 JsonResult 方法的样子
public JsonResult GetUserName(string emailId)
{
string UserName = "";
var query = (from u in DbContext.Users
where u.User_Email.ToLower() == emailId.ToLower()
select u).SingleOrDefault();
if(query!=null)
{
UserName = query.User_FirstName +", "+query.User_LastName;
}
return Json(UserName, JsonRequestBehavior.AllowGet);
}
下面是我的查看代码
Email: <input type="text" id="txtEmail" /><br /><br />
Name: <input type="text" id="txtName" />
下面是jquery代码
<script type="text/javascript">
$(document).ready(function () {
//$("#txtEmail").first().focus();
$("#txtEmail").change(function () {
var emailId = $(this).val();
//$("#txtName").val(emailId);
$.ajax({
url: 'GetUserName',
type: 'POST',
data: JSON.stringify({ emailId: emailId }),
dataType: 'json',
contentType: 'application/json',
success: function (data) {
if (data != "" || data != null) {
$("#txtName").val(data);
}
else {
alert("Our system does not recognize this email. Please try again.");
$("#txtEmail").focus();
}
}
});
});
});
</script>
注意....我的 GetUserName JsonResult 方法属于我的默认控制器。
我的 jquery 代码在更改事件上成功执行,但没有调用 GetUserName 方法......请让我知道我缺少什么。
谢谢,