【发布时间】:2013-05-13 18:49:15
【问题描述】:
我在 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 Framework 在 jQuery Mobile 上显示 reCaptcha?
【问题讨论】:
-
你找到解决方案了吗?
标签: php zend-framework jquery-mobile recaptcha