js 给url添加时间戳 解决浏览器缓存

//解决浏览器缓存
function timestamp(url){
     //  var getTimestamp=Math.random();
      var getTimestamp=new Date().getTime();
     if(url.indexOf("?")>-1){
       url=url+"&timestamp="+getTimestamp
     }else{
       url=url+"?timestamp="+getTimestamp
     }
     return url;
    }

js 给url添加时间戳 解决浏览器缓存,布布扣,bubuko.com

js 给url添加时间戳 解决浏览器缓存

上一篇:css3实现立方体,并且自转效果


下一篇:js 在页面上模拟多选,蚂蚁线线框