求大神:网页验证码问题,JS或PHP人士请看:如何让验证码错误提示后用户名和密码记录仍在?
<styletype="text/css">.textcss{width:150px;height:20px;}.titlecss{background:#dddddd;...
<style type="text/css">
.textcss{width:150px; height:20px;}
.titlecss{background:#dddddd; font-size:25px;}
</style>
<script type="text/javascript" src="ajaxmin.js"></script>
<div align="center" class="titlecss"> 后台管理</div>
<script>
function Checklogin()
{
if (loginform.user.value=="")
{
alert("请填写登录名");
loginform.user.focus();
return false;
}
if (loginform.pw.value=="")
{
alert("密码不能为空");
loginform.pw.focus();
return false;
}
}
</script>
<script>
$(function(){
//算术验证
$("#getcode_math").click(function(){
$(this).attr("src",'code_math.php?' + Math.random());
});
$("#chk_math").click(function(){
var code_math = $("#code_math").val();
$.post("chk_code.php?act=math",{code:code_math},function(msg){
if(msg==0){
alert("验证码错误!");
}
});
});
});
</script>
<form action="" method="post" name="loginform" onsubmit="return Checklogin();"><table>
<tr><td>用户名:</td><td><input type="text" name="user" class="textcss"/><td></tr>
<tr><td>密码:</td><td><input type="password" name="pw" class="textcss"/></td></tr>
<tr><td>验证码:</td><td><input type="text" class="input" id="code_math" maxlength="4" /> <img src="code_math.php" id="getcode_math" title="看不清,点击换一张" align="absmiddle"></td></tr>
<tr><td><input type="reset" value="重置"></td><td><input type="submit" id="chk_math" value="登录"></td></tr>
</table>
</form>
如果填写为空的话,它总是先判断验证码,而不是先判断用户名为空;另外提交后如果验证码错了,全部清空了,如何保持用户名和密码还在?? 展开
.textcss{width:150px; height:20px;}
.titlecss{background:#dddddd; font-size:25px;}
</style>
<script type="text/javascript" src="ajaxmin.js"></script>
<div align="center" class="titlecss"> 后台管理</div>
<script>
function Checklogin()
{
if (loginform.user.value=="")
{
alert("请填写登录名");
loginform.user.focus();
return false;
}
if (loginform.pw.value=="")
{
alert("密码不能为空");
loginform.pw.focus();
return false;
}
}
</script>
<script>
$(function(){
//算术验证
$("#getcode_math").click(function(){
$(this).attr("src",'code_math.php?' + Math.random());
});
$("#chk_math").click(function(){
var code_math = $("#code_math").val();
$.post("chk_code.php?act=math",{code:code_math},function(msg){
if(msg==0){
alert("验证码错误!");
}
});
});
});
</script>
<form action="" method="post" name="loginform" onsubmit="return Checklogin();"><table>
<tr><td>用户名:</td><td><input type="text" name="user" class="textcss"/><td></tr>
<tr><td>密码:</td><td><input type="password" name="pw" class="textcss"/></td></tr>
<tr><td>验证码:</td><td><input type="text" class="input" id="code_math" maxlength="4" /> <img src="code_math.php" id="getcode_math" title="看不清,点击换一张" align="absmiddle"></td></tr>
<tr><td><input type="reset" value="重置"></td><td><input type="submit" id="chk_math" value="登录"></td></tr>
</table>
</form>
如果填写为空的话,它总是先判断验证码,而不是先判断用户名为空;另外提交后如果验证码错了,全部清空了,如何保持用户名和密码还在?? 展开
3个回答
展开全部
把<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>
<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>
展开全部
你是想破译后台密码吧,绕过服务器的验证限制的办法,获取FTP后在后台页面加一个代码去掉限制
追问
没有啊,哥是菜鸟,学习呢,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input type="text" name="user" class="textcss" value="$_POST['user']" > 我给你写一个,密码知道咋写了不,就是加个VALUE值,是你刚才输进去的,你试试这样行不行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询