2

我在 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 模式添加到我在 web-xml 中的 servlet-mapping 中。谁能帮助我如何刷新验证码。

4

1 回答 1

1

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

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

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

于 2013-05-07T05:44:42.897 回答