無法弄清楚如何主題ajax加載的recaptcha。下面的代碼不起作用。
從Google RecaptchaReCAPTCHA ajax加載的主題問題
看到這個帖子Recaptcha ajax API custom theme not working,但我肯定是在本地主機和驗證碼查看工作正常,只是沒有改變的主題。
任何人都有如何讓白色主題工作的建議?
<script type='text/javascript'>
var RecaptchaOptions = {
theme : 'white'
};
</script>
<div id="recaptcha_content">
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k=6Ldr7woAAAAAADa_69Mr-EZKAeYyEx9N08q" 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>
</div>
<script type="text/javascript">
$(document).ready(function() {
$.getScript('http://www.google.com/recaptcha/api/js/recaptcha_ajax.js',
function() {Recaptcha.create("6Ldr7woAAAAAADa_69Mr-EZKAeYyEx9N08q", "recaptcha_content");
});
});
</script>
哇,我第一次發出了懸賞,有什麼偉大的成績和快速。發現問題,是的,它更簡單,然後我想。感謝大家的幫助。 – jhanifen 2011-03-14 23:15:24
謝謝你的問題。它看起來像是在互聯網上使用舊版reCaptcha v1的一個例子。 – Kate 2015-08-21 12:45:02