如何刷新简单的验证码

时间:2013-03-01 11:13:30

标签: javascript ajax captcha simplecaptcha

我在eclipse IDE的库中有simplecaptcha 1.2.1 jar文件,工作正常。没有刷新验证码的选项,所以我添加了以下代码,但它不起作用。

function refreshCaptcha()
 {
     var xmlhttp;
     if (window.XMLHttpRequest)
       {
       xmlhttp=new XMLHttpRequest();
       }
     else
       {
       xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
       }
     xmlhttp.onreadystatechange=function()
       {
       if (xmlhttp.readyState==4)
         {
         if(xmlhttp.status==200)
          {
          alert(xmlhttp.responseText);                  
         document.getElementById("captcha").innerHTML=xmlhttp.responseText;
         }
         }
       }
     xmlhttp.open("GET","captchaImg",true);
     xmlhttp.send();
 }

我的html部分是

        <img src="captchaImg" id="captcha"/>
        <img src="resources/images/refresh.jpeg" onclick="refreshCaptcha()"/>

我所得到的警报中的响应是这样的-- PNGIHDR 2 3 j

“captchaImg”作为URL-Pattern添加到web-xml中的servlet-mapping中。任何人都可以帮我刷新验证码。

1 个答案:

答案 0 :(得分:1)

不需要任何ajax调用我只是添加了这段代码

onclick="document.getElementById('captcha').src='captchaImg?'+
         (new Date().getTime());" 

这件事最重要的一件事:?'+(new Date()。getTime());