码迷,mamicode.com
首页 > 微信 > 详细

微信客户端浏览器中添加时间戳骗过浏览器缓存

时间:2015-01-14 14:07:31      阅读:955      评论:0      收藏:0      [点我收藏+]

标签:

<script>
  function convertURL(){
    var url = location.href;
    var timstamp = (new Date).valueOf();
    if (url.indexOf("?")>=0){
      url = url + "&ts=" + timstamp;
    }else {
      url = url + "?ts=" + timstamp;
    }
    location.href = url;
    alert(23445)
  }
  document.getElementById("refresh").onclick = function(){
    convertURL()
  };
</script>

 

微信客户端浏览器中添加时间戳骗过浏览器缓存

标签:

原文地址:http://www.cnblogs.com/sussski/p/4223737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!