我正在使用this tutorial之后的recaptcha django形式。仅刷新按钮上的小刷新按钮无法正常工作。不知道发生了什么。

验证码的生成代码

<script>var RecaptchaOptions = {theme : 'white'};</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6Lc6YLoSAAAAAAFKV5Y13hyLIl4y845XIUIQY-EN"></script>

<noscript>
  <iframe src="http://api.recaptcha.net/noscript?k=6Lc6YLoSAAAAAAFKV5Y13hyLIl4y845XIUIQY-EN" height="300" width="500" frameborder="0"></iframe><br />
  <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
  <input type='hidden' name='recaptcha_response_field' value='manual_challenge' />
</noscript>


谢谢

最佳答案

没关系...这是我的CSS引起的问题。如果我删除CSS,它的工作就很酷。

10-07 14:32