美文网首页
h5游戏阻止浏览器缓存

h5游戏阻止浏览器缓存

作者: huanghaodong | 来源:发表于2019-07-30 11:58 被阅读0次
    1. 将<html>改成<html manifest="IGNORE.manifest">这样的修改会引擎浏览器去缓存html时报错,从而避免该html被缓存
    2. 在<head></head>围堵标签中添加代码
    <head>
            <meta http-equiv="Pragma" CONTENT="no-cache"> 
            <meta http-equiv="Cache-Control" CONTENT="no-cache"> 
            <meta HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
            <meta http-equiv="Expires" CONTENT="0">
            <meta http-equiv="cache" content="no-cache">
    
    </head>
    

    相关文章

      网友评论

          本文标题:h5游戏阻止浏览器缓存

          本文链接:https://www.haomeiwen.com/subject/njigrctx.html