- 注册时间
- 2013-9-27
- 最后登录
- 2019-8-31
- 阅读权限
- 10
- 积分
- 347
- 精华
- 0
- 帖子
- 80
|
- $.ajax({
- url:"../Ajax/Login_Ajax.aspx?method=Login",
- data: {submitData: json},
- type: "post",
- success: function(text){
- if (text == "success") {
- error_count=1;
- loginWindow.hide();
- mini.loading("登录成功,马上转到系统...", "登录成功");
- setTimeout(function () {
- window.location = "main.html";
- }, 1500);
- } else {
- error_count+=1;
- mini.get("btn").setText("登录");
- mini.get("btn").setEnabled(true);
- msgbox=mini.alert(text+"\n您还可以尝试 "+(5-error_count)+" 次!");
- if (5-error_count>=0)
- setTimeout(function(){mini.hideMessageBox(msgbox)},2000);
- else
- setTimeout(function(){mini.hideMessageBox(msgbox)},100);
- }
- },
- error: function(jqXHR, textStatus, errorThrown){
- error_count+=1;
- mini.get("btn").setText("登录");
- mini.get("btn").setEnabled(true);
- msgbox=mini.alert(jqXHR,responseText);
- setTimeout(function(){mini.hideMessageBox(msgbox)},2000);
- }
- });
复制代码 上面为前台Login登录 代码。
|
|