发布网友 发布时间:2024-10-24 09:34
共3个回答
热心网友 时间:2024-11-06 14:52
把<div...>后台管理</div>标签下面的js脚本换成我下面改的那样,同时把表单里的onsubmit="return Checklogin();" 这个属性删掉,试试看:
<script>
$(function(){
//算术验证
$("#getcode_math").click(function(){
$(this).attr("src",'code_math.php?' + Math.random());
});
$("#chk_math").click(function(){
if (loginform.user.value=="") { //有个疑问,loginform.user.value能拿到输入的用户名吗?
alert("请填写登录名");
loginform.user.focus();
return false;
}
if (loginform.pw.value=="") { //还有这样,能拿到输入的密码?
alert("密码不能为空");
loginform.pw.focus();
return false;
}
var code_math = $("#code_math").val();
var XMLHttpRequest = $.post("chk_code.php?act=math",{code:code_math},function(msg){
if(msg==0){
alert("验证码错误!");
}
});
if (XMLHttpRequest.responseText == 0) {
return false;
}
});
});
</script>
热心网友 时间:2024-11-06 14:46
<input type="text" name="user" class="textcss" value="$_POST['user']" > 我给你写一个,密码知道咋写了不,就是加个VALUE值,是你刚才输进去的,你试试这样行不行
热心网友 时间:2024-11-06 14:46
你是想破译后台密码吧,绕过服务器的验证限制的办法,获取FTP后在后台页面加一个代码去掉限制