码迷,mamicode.com
首页 > 其他好文 > 详细

验证码点击刷新 this.src=this.src+'?'+Math.random()

时间:2015-06-08 16:44:30      阅读:860      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>后台管理</title>
<link rel="stylesheet" type="text/css" href="__ADMINRES__/css/style.css" />
<script type="text/javascript" src="__ADMINRES__/js/jquery.js"> </script>

<script type="text/javascript">
function check(form)
{
if(form.username.value == ‘‘)
{
alert("用户名不能为空");
form.username.focus();
return false;
}
if(form.password.value == ‘‘)
{
alert("密码不能为空");
form.password.focus();
return false;
}
if(form.code.value == ‘‘)
{
alert("验证码不能为空");
form.code.focus();
return false;
}
return true;
}

</script>
</head>

<body>
<div id="loginpanelwrap">

<div class="loginheader">
<div class="logintitle"><a href="#">Panelo Admin</a></div>
</div>

<form action = "{:U(‘Public/do_login‘)}" method = "post" onsubmit="return check(this)">
<div class="loginform">

<div class="loginform_row">
<label>用户名:</label>
<input type="text" class="loginform_input" name="username" value="admin" />
</div>
<div class="loginform_row">
<label>密码:</label>
<input type="text" class="loginform_input" name="password" value = "admin"/>
</div>
<div class="loginform_row">
<label>验证码:</label>
<input type="text" class="loginform_input" name="code" style="width:150px" />
<img src="{:U(‘Public/captcha‘)}" style="margin-left:5px;" onclick="show(this)" />
<script>
function show(obj){
obj.src = ‘{:U("Public/captcha","","")}/rand/‘+Math.random();
}
</script>
</div>

<div class="loginform_row">
<input type="submit" class="loginform_submit" value="Login" />
</div>
<div class="clear"></div>
</div>
</form>

</div>


</body>
</html>

验证码点击刷新 this.src=this.src+'?'+Math.random()

标签:

原文地址:http://www.cnblogs.com/php-linux/p/4561018.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!