刷新浏览器就正常。
怎么解决,有什么代码可以强行让验证码重新载入的。
生成地址后面加个js随机参数,url?r=Math.random()
">
你在验证码图片生成程序中加入禁止缓存的头
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the pastheader ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1header ("Pragma: no-cache"); // HTTP/1.0
Math.random()
已经有了,可是不行,现在代码是:
都加上了,也不行
你在验证码图片生成程序中加入禁止缓存的头
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the pastheader ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1header ("Pragma: no-cache"); // HTTP/1.0