使用刷新按钮刷新验证码
我正在用 php 开发一个网站,我也在其中使用 javascript。
当用户无法读取验证码时,我必须使用刷新按钮刷新网站中的验证码。
我怎样才能做到这一点。 请分享任何想法或代码给我
谢谢
I am developing a website with php, i'm also using javascript in it.
I have to refresh captcha in my website with a refresh button when a captcha is unreadable to a user.
how can i do this.
please share any idea or codes to me
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你为什么要自己亲手推出这个?您尝试过验证码吗? http://recaptcha.net/whyrecaptcha.html
Why are you hand-rolling this out yourself? Did you try Recaptcha? http://recaptcha.net/whyrecaptcha.html
您可以使用 ReCaptcha 。
否则,这取决于你实现它的方式.. Ajax 似乎是正确的方法..
You can use the ReCaptcha .
Otherwise it depends on the way you have implemented it .. Ajax seems like the way to go ..
是的,ReCaptcha 是完美且安全的解决方案,只需在那里注册并在您的网站上实施即可,应该没那么难:)
Yes, the ReCaptcha is the perfect, and safe solution to go for, just register there and implement that on your site, it should not be that difficult :)
鉴于您的网站上有验证码的实现。适合您需求的方法是 Ajax 请求。 Ajax (XMLHTTPRequest) 教程
如果您不想对所有内容进行硬编码并已为您完成工作,请查看 reCAPTCHA 或任何其他提供验证码的公司。不过,不完全确定他们是否提供非刷新验证码页面。
我没有使用它的经验,除了编辑帖子太多次时,StackOverflow 会将我重定向到“人工验证”页面。
Given that you have an implementation of Captcha on your website. An approach suitable for your needs is an Ajax request. Ajax (XMLHTTPRequest) Tutorial
If you do not want to hard-code everything and have the work already done for you, look at reCAPTCHA or any other Captcha providing company. Although, not entirely sure if they offer a non-refreshing captcha page.
I have no experience in using it, besides when editing posts too many times, StackOverflow will redirect me to the "Human Verification" page.