jquery.ajax如何通过点击验证码图来刷新验证码?
我这样写的但是并不能刷新,还是第一次出现的验证码$(document).ready(function(){$('img#codeP').click(function(){...
我这样写的但是并不能刷新,还是第一次出现的验证码
$(document).ready(function() {
$('img#codeP').click(function() {
$.ajax({
url: 'yzm.php',
type: 'post'
});
});
}); 展开
$(document).ready(function() {
$('img#codeP').click(function() {
$.ajax({
url: 'yzm.php',
type: 'post'
});
});
}); 展开
1个回答
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>验证码测试登录页面</title>
<script type="text/javascript">
function changeimg() {
var myimg = document.getElementById("code");
now = new Date();
myimg.src = "yzm.php?code=" + now.getTime();
}
</script>
</head>
<body>
<center>
<form action="yzm.php" method="post" />用户名:
<input type="text" name="username" />
<br>密 码:
<input type="password" name="password" />
<br> 验证码:
<input type="text" name="certCode" />
<img id="code" src="yzm.php"><a href="javascript:changeimg()">看不清,换一张 </a>
<br>
<input type="submit" value="登录" />
</form>
</center>
</body>
</html>
追问
请用jquery的方式来写这种已经会了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询