验证码刷新

通过拼接字符串实现刷新

function reimg(){
    var imgVcode =	document.getElementById("imgVcode");
    imgVcode.src = "${pageContext.request.contextPath}/captcha/createCaptcha?d="+new Date().getTime();  
}

绑定事件onclick,点击时调用reimg()


	
		验证码:
	
	
	    
	    
	    

请输入图片中的四个字母。 看不清楚?换个图片

注: 

  1. 拼接随机字符串(d为任意字符)${pageContext.request.contextPath}/captcha/createCaptcha?d="+new Date().getTime(); 
  2. 引入验证码   src="
  3. 阻止链接刷新页面   javascript:void(0)

你可能感兴趣的:(x)