1
0
mirror of https://e.coding.net/circlecloud/McAccount.git synced 2025-09-06 07:37:40 +00:00

fix many bugs...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092
2015-10-13 19:29:11 +08:00
parent 056187c79f
commit 7f19057e1a
14 changed files with 197 additions and 715 deletions

View File

@ -118,7 +118,6 @@ $(document).ready(function(){
if(mail==""){
alert("邮箱地址不能为空!");
}
$.ajax({
type:"POST",
data:{mail:mail,user:"<?=$_SESSION['username']?>",type:"status"},
@ -155,7 +154,7 @@ $(document).ready(function(){
success:function(rdata){
switch(rdata.status){
case "success" : alert(rdata.info); break;
case "error" : alert("验证失败 请重试"); return false; break;
case "error" : alert(rdata.info); return false; break;
}
}
})