我正在使用 RainTPL 3 开发一个网站。我需要将recaptcha_get_html($publickey)
创建的 HTML 数据传递给 tpl 文件并显示它。但是当使用 RainTPL 变量传递这个值时,它会在 TPL 页面中作为字符串接收。不像 HTML。有没有办法在 RainTPL 中传递 HTML?
我在 HTML 页面中得到的输出是它应该将输出作为验证码的地方
<script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=myKey"></script> <noscript> <iframe src="http://www.google.com/recaptcha/api/noscript?k=myKey" 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>