系统按钮返回,一般都从缓存里直接取,现在想让他返回时重新加载

在head里面加这个meta 
<meta http-equiv="pragma" content="no-cache"> 
<meta http-equiv="cache-control" content="no-cache"> 
<meta http-equiv="expires" content="0">     
另外如果页面里面有表单   在表单数据上加  autocompete=“off” 
例:
<!DOCTYPE HTML>
<html>
<body>


<form action="/example/html5/demo_form.asp" method="get" autocomplete="on">
First name:<input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
E-mail: <input type="email" name="email" autocomplete="off" /><br />
<input type="submit" />
</form>


<p>请填写并提交此表单,然后重载页面,来查看自动完成功能是如何工作的。</p>
<p>请注意,表单的自动完成功能是打开的,而 e-mail 域是关闭的。</p>


</body>
</html>
原文地址:https://www.cnblogs.com/qq735675958/p/7597008.html