验证码更换
需求
- 鼠标放到验证码上有提示
- 点击验证码会刷新验证码
方法
- 每次get访问:http://127.0.0.1:8000/register/ 就会刷新
- 给验证码/check_code/添加一个js。来刷新
从图可以看到,我们可以给url通过get的方式传参数就可以改变图片的验证码, 下面我们可以做一个函数来实现这个
<div class="col-sm-5">
<img id="i1" onclick="changeImage(this);" style="width: 120px;height: 30px;" src="/check_code/" title="点击更新图片">
</div>
function changeImage(ths) {
ths.src = ths.src + "?";
}