给验证码绑定更换验证码的js事件:
html:
<div class="item-input">
<img id="captcha_img" alt="点击更换" title="点击更换" src="../Kaptcha"
onclick="changeVerifyCode(this)"/>
</div>
js:
<script type="text/javascript">
function changeVerifyCode(img) {
img.src = "../Kaptcha?" + Math.floor(Math.random() * 100);
};
</script>
或者:
html:
<div class="item-input">
<img id="captcha_img" alt="点击更换" title="点击更换" src="../Kaptcha"/>
</div>
js:
$('#captcha_img').click(function (){
$(this).attr('src', "../Kaptcha?" + Math.floor(Math.random() * 100));
})
网友评论