Home > Backend Development > PHP Tutorial > php ajax实现 验证码刷新 这个如何写?

php ajax实现 验证码刷新 这个如何写?

WBOY
Release: 2016-06-13 13:47:17
Original
805 people have browsed it

php ajax实现 验证码刷新 这个怎么写???
php ajax实现 验证码刷新 这个怎么写啊?有例子么?没写过ajax

只用过

这个,但是这个只是改变了验证码的背景图,而不是改变验证码的文字。

------解决方案--------------------
 php ajax实现 验证码刷新  这个如何写?


image.php 是验证码的php图片文件! 直接点击验证码就可以实现刷新
------解决方案--------------------
验证码程序生成的图片不要让浏览器缓存了。

URL参数上带个随机数,比如 Math.random() 。
------解决方案--------------------
验证码本质是一个由PHP文件生成的图像文件,当然生成的时候会生成一个类似验证码的内容的东东方在SESSION或是COOKIE中,刷新只不过是使用JS重新请求验证码PHP文件重新生成一次而已!
验证码: php ajax实现 验证码刷新  这个如何写?
<script><br />//刷新验证码<br />function reloadcode(id)<br />{<br /> var yucodeurl = document.getElementById(id).src;<br /> document.getElementById(id).src = yucodeurl +'?'+ Math.random();<br />}<br /></script>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template