document.writeln("
"); document.writeln("
"); document.writeln("
"); document.writeln("
用户名
"); document.writeln("密 码 "); document.writeln("
"); document.writeln("
"); document.writeln(""); document.writeln("
"); document.writeln("
"); document.writeln(""); document.writeln("
"); document.writeln("
"); document.writeln("
免费注册个人会员"); document.writeln(" 忘记密码?
"); document.writeln("
"); $(function(){ $(".login_load").ajaxSend(function(){ $(this).show(); }).ajaxComplete(function(){ $(this).hide(); }); $("#login_submit").click(function(){ if(!$("#login_name").val()) { alert("用户名不能为空"); return false; } if(!$("#login_pwd").val()) { alert("密码不能为空"); return false; } $("#login_err").html(""); $.post("http://www.chlahr.com/login/per.html","login_name="+$("#login_name").val()+"&login_pwd="+$("#login_pwd").val()+"",function(m){ if(m=='-4') { alert("非法登陆"); } else if(m=='-1') { alert("用户名错误"); } else if(m=='-2') { alert("密码错误"); } else if(m=='-3') { alert("未知错误"); } else { $("#login_personal_js").html('跳转中......'); //window.location.reload(); window.location.href="http://www.chlahr.com/resume/index.html"; } },'text'); }); $(".logout").click(function(){ $.post("http://www.chlahr.com/login/per_logout.html","",function(){ $("#login_personal_js").html('跳转中......'); window.location.reload(); },'text'); }); });