我在 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 中。谁能帮助我如何刷新验证码。