码迷,mamicode.com
首页 > 其他好文 > 详细

给link标签和scritp加随机版本号

时间:2020-11-27 11:46:06      阅读:19      评论:0      收藏:0      [点我收藏+]

标签:func   样式   his   lower   att   href   版本号   typeof   function   

给所有link和script标签加随机版本号,方便调试样式,不用每次清缓存了;

$("link,script").each(function(){
  var t=Math.random().toFixed(4);
  /*var $tag=$(this).prop("tagName").toLowerCase();//获取当前元素的标签名ai
  if($tag == "link"){
    var $href=$(this).attr("href");
    $(this).attr("href",$href+"?v="+t)
  }else{
    if(typeof($(this).attr("src")) != "undefined"){//判断script标签有没有src属性
    var $src=$(this).attr("src");
    $(this).attr("src",$src+"?v="+t)
  }
}*/
  if($(this).attr("src")){
    var $src=$(this).attr("src");
    $(this).attr("src",$src+"?v="+t)
  }else if($(this).attr("href")){
    var $href=$(this).attr("href");
    $(this).attr("href",$href+"?v="+t)
  }
})

给link标签和scritp加随机版本号

标签:func   样式   his   lower   att   href   版本号   typeof   function   

原文地址:https://www.cnblogs.com/wangkunlong/p/14030965.html

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