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を表示するには?