我正在使用Google Re-Captcha,并且想要在Re-Captcha填充后启用提交按钮。 我想在Div类中添加一个回调函数,我的代码如下所示:
<div class="input-field col s12">
{{ form.captcha.errors }}
<div data-callback="enableBtn"></div>
{{ form.captcha }}
</div>
这当前返回form.captcha之外的数据回调。如何将data-callback属性添加到form.captcha?
所以对于ex: 如果form.captcha是
<div class="g-recaptcha" data-sitekey="== xxxxxx =="></div>
而不是
<div class="g-recaptcha" data-sitekey="== xxxxxx ==" data-callback="enableBtn">
我有
<div data-callback="enableBtn">
<div class="g-recaptcha" data-sitekey="== xxxxxx =="></div>
答案 0 :(得分:1)
您可以指定小部件网址...
NORECAPTCHA_WIDGET_TEMPLATE (string) = location for the widget template.
请参阅此html并将其设置为一个并放入模板并指出。