使用元 HTML 标签禁用浏览器缓存
在 HTML 中使用 <meta> 标签禁用浏览器缓存时,请使用以下代码 −
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" />
HTML 允许您通过多种方式指定元数据——有关文档的其他重要信息。元元素可用于包含描述 HTML 文档属性的成对名称/值,例如作者、到期日期、关键词列表、文档作者等。
<meta> 标签用于提供此类附加信息。此标签是空元素,因此没有结束标签,但它在属性中携带信息。
示例
让我们看一个简单的例子。我们已经输入了 meta http equiv 以禁用浏览器缓存 −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Center Div Elements</title> </head> <style> .mydiv{ color: red; background: yellow; } </style> <body> <h1>Demo Heading</h1> <div class='mydiv'> This is demo text. </div> </body> </html>
输出
广告