我有一个登录页面,用户可以输入用户名和密码我隐藏具有文本框内容的 div 我知道我的方法非常糟糕,但我没有更好的解决方案。当用户输入错误超过3 次?我想用没有客户端的 c# 代码和 jquery 来完成这项工作。
$.ajax(
{
type: "POST",
url: "loginpg.aspx/loginmtd",
data: JSON.stringify({
username: username,
password: password
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (ret) {
if (ret.d != "" && hasError == false) {
$(".error").hide();
hasError = true;
$('#result').after('<span class="error"> welcome ' + ret.d + '</span>');
} else if (hasError == false) {
$(".error").hide();
hasError = true;
if (failcount < 3) {
$('#result').after('<span class="error">password is wrong' + ret.d + '</span>');
ret = "";
failcount += 1;
} else {
$(".hid").hide(1000);
}
}
},
error: function (x, e) {
hasError = true;
$('#result').after(x.responseText);
}
});