我到处搜索,但没有结果(也许我不知道要搜索什么)。我的问题是显示这样的错误验证码解决方案的消息(用红色标记):
验证码使用 ExtJs 面板显示:
{
xtype:'panel',
id:'reCaptcha-panel',
html:'<div id="recaptcha"></div>',
width:325,
height:130,
border:false,
listeners:{
afterrender:function(){
Recaptcha.create(apiKey,
Ext.getDom('recaptcha'),
{
theme : 'blackglass',
lang:'en',
callback: Recaptcha.focus_response_field
});
}
}
}
该面板位于 ExtJs 表单中(脚本包含在 .html 中),这里的一切正常。在服务器端,使用谷歌服务器上的 java HttpURLConnection 发布请求检查验证码解决方案,该请求返回“不正确的验证码-sol”只有当客户的解决方案不正确时。我需要知道如何显示如上图所示的消息。