我在尝试在 jquery 移动应用程序中将 reCaptcha 实现为 zend 表单时遇到了问题。当 jquery mobile 被禁用时,一切都很好,但我需要使用它,但我只能从 recaptcha + 验证消息中看到标签。
$recaptcha = new Zend_Service_ReCaptcha(
'644443tQSAA4444444444444444444WNm6',
'6L44443444444444444444444EmA_4448');
$captcha = new Zend_Form_Element_Captcha('challenge2',
array(
'captcha' => 'ReCaptcha',
'captchaOptions' => array(
'captcha' => 'ReCaptcha',
'service' => $recaptcha
)
)
);
$captcha->setLabel('hello');
$captcha->setErrorMessages(array( 'Please retape above words correctly'));
$this->addElement($captcha);
我试图$captcha->setAttrib('data-role', 'none')
但没有帮助。
如何使用 Zend 框架在 jQuery Mobile 上显示 reCaptcha?