jQuery点击验证码图片刷新

于 2024-04-28 发布 阅读量222  

// 点击更换验证码  
$('#id_img_captcha').click(function() {  
        var timestamp = new Date().getTime();  
        $(this).attr("src", "验证码图片地址" + '?'+ timestamp);  
});