HTML5教程

html——设置浏览器禁止缓存页面

本文主要是介绍html——设置浏览器禁止缓存页面,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

html——设置浏览器禁止缓存页面


2021-08-12  00:33:33

 

 

<html>

  <head>
    <meta http-equiv="Pragma" content="no-cache"> 
	<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> 
	<meta http-equiv="Expires" content="Wed, 14 Feb 1990 00:00:01 GMT">
  </head>

  <body>
  </body>
  
  <head>
    <meta http-equiv="pragma" content="no-cache">
  </head>
  
</html>
这篇关于html——设置浏览器禁止缓存页面的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!