/* ie不刷新列表bug */
try{
var agent = navigator.userAgent.toLowerCase();
var ieflag = /(msie\s|trident.*rv:)([\w.]+)/.test(agent);
if(ieflag){
window.num = Number(window.localStorage.getItem("num"));
var num = window.num++;
if(window.num == 2){
window.localStorage.removeItem("num");
window.location.reload();
}
}
}catch(e){
}

相关文章:

  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2022-01-10
  • 2022-02-19
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案