标签:
1、
在html头中加入以下3句话,可以防止大部分浏览器缓存
<meta http-equiv="pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache, must-revalidate"> <meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT">
2、
或者 JavaScript中加入类似下面的代码,让每次的链接都不一样
var s=Math.random()*10; document.getElementById("checkCodeImg").innerHTML="<img src=‘/checkcode.jsp?rnd="+s+"‘/>";
1、2 来自:http://hsj69106.blog.51cto.com/1017401/286541
// *** *** *** *** *** *** *** ***
// *** *** *** *** *** *** *** ***
// *** *** *** *** *** *** *** ***
// *** *** *** *** *** *** *** ***
标签:
原文地址:http://www.cnblogs.com/CodeSkill/p/4920612.html