动态加载js文件

如果不需要浏览器做缓存,可以试一下在header里写一些信息(具体没试过,网上找的)

 

<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">

 

 

 

动态加载js文件,在js资源url后加随机数

 

<script>
    document.write("<script type='text/javascript' src='js/test.js? "+ Math.random(); +"'></script>");
</script>

 

posted @ 2017-11-07 10:13  随行-LV  阅读(275)  评论(0编辑  收藏  举报